Closed martonmiklos closed 4 years ago
The Q_UNUSED macro is defined as: #define Q_UNUSED(x) (void)x; so no semicolon is required after that. (This could trigger warnings with clang-tidy). This PR removes these unnecessary semicolons.
#define Q_UNUSED(x) (void)x;
The Q_UNUSED macro is defined as:
#define Q_UNUSED(x) (void)x;
so no semicolon is required after that. (This could trigger warnings with clang-tidy). This PR removes these unnecessary semicolons.