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:
ebbit1q 2025-10-10 02:08:57 +02:00
parent c75f5386b5
commit 9b65422d5a
8 changed files with 26 additions and 8 deletions

View file

@ -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);