Remove UNUSED

The `UNUSED` macro is used to mark a variable as unused but with a name.
Those usages are replaced with comments so that `UNUSED` can be removed.

https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-unused
This commit is contained in:
phosit
2025-06-03 14:13:41 +02:00
committed by phosit
parent dd26f3a802
commit 891908b801
127 changed files with 355 additions and 340 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
/* Copyright (C) 2017 Wildfire Games.
/* Copyright (C) 2025 Wildfire Games.
* ...the usual copyright header...
*/
@@ -46,7 +46,7 @@ public:
// ...
}
virtual void HandleMessage(const CMessage& msg, bool UNUSED(global))
virtual void HandleMessage(const CMessage& msg, bool /*global*/)
{
// ...
}