mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 11:43:18 -04:00
Core/ChatCommands: C++17 cleanup (again) (PR #25323)
(cherry picked from commit 2f7d2ef3e9)
This commit is contained in:
@@ -1681,7 +1681,7 @@ public:
|
||||
return true;
|
||||
};
|
||||
|
||||
static bool HandleDebugOutOfBounds([[maybe_unused]] ChatHandler* handler, CommandArgs* /*args*/)
|
||||
static bool HandleDebugOutOfBounds([[maybe_unused]] ChatHandler* handler)
|
||||
{
|
||||
#ifdef ASAN
|
||||
uint8 stack_array[10] = {};
|
||||
@@ -1838,7 +1838,7 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool HandleDebugDummyCommand(ChatHandler* handler, CommandArgs* /*args*/)
|
||||
static bool HandleDebugDummyCommand(ChatHandler* handler)
|
||||
{
|
||||
handler->SendSysMessage("This command does nothing right now. Edit your local core (cs_debug.cpp) to make it do whatever you need for testing.");
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user