mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 19:05:42 +00:00
Fixed all unused-parameters warnings
issue #121 used clang-tidy to achieve this
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
#include "Group.h"
|
||||
#include "Player.h"
|
||||
|
||||
void GetPlayerInfo(ChatHandler* handler, Player* player)
|
||||
void GetPlayerInfo(ChatHandler* /*handler*/, Player* player)
|
||||
{
|
||||
if (!player)
|
||||
return;
|
||||
@@ -103,7 +103,7 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool HandleLfgQueueInfoCommand(ChatHandler* handler, char const* args)
|
||||
static bool HandleLfgQueueInfoCommand(ChatHandler* /*handler*/, char const* /*args*/)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user