HamedMasafi / Nut

Advanced, Powerful and easy to use ORM for Qt
GNU Lesser General Public License v3.0
296 stars 75 forks source link

Remove semicolons after Q_UNUSED macros #84

Closed martonmiklos closed 4 years ago

martonmiklos commented 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.