mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 22:42:14 -07:00
remove useless semicolons
removes the semicolons after empty function definitions these semicolons are optional, they don't do anything this will have functions be consistently formatted if we want to keep the option to have these on the same line like they were before we should use the option AllowShortFunctionsOnASingleLine: None
This commit is contained in:
parent
c75f5386b5
commit
9b65422d5a
8 changed files with 26 additions and 8 deletions
|
|
@ -10,7 +10,9 @@ class SignalHandler : public QObject
|
|||
Q_OBJECT
|
||||
public:
|
||||
SignalHandler(QObject *parent = 0);
|
||||
~SignalHandler() {};
|
||||
~SignalHandler()
|
||||
{
|
||||
}
|
||||
static void sigHupHandler(int /* sig */);
|
||||
static void sigSegvHandler(int sig);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue