diff options
author | Kelno <kelno@users.noreply.github.com> | 2021-06-22 16:30:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 16:30:33 +0200 |
commit | 17ed3fd1dcfcb859869fcbbeb643fa59793d1687 (patch) | |
tree | dfe3b6a2da61c0577ed0db2570b353c6eb820e55 /src | |
parent | 13f1a9f117a1d2b16103079d07dc1bce39240312 (diff) |
Core/Misc: Clear unused undef leftover in a refactor (#26616)
Previously this function was using a macro that was #undef at the end of the function. Since then it uses a lambda function and the undef is not needed anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Handlers/QuestHandler.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/game/Handlers/QuestHandler.cpp b/src/server/game/Handlers/QuestHandler.cpp index cec47df7ed1..8f90672f355 100644 --- a/src/server/game/Handlers/QuestHandler.cpp +++ b/src/server/game/Handlers/QuestHandler.cpp @@ -218,8 +218,6 @@ void WorldSession::HandleQuestgiverAcceptQuestOpcode(WorldPacket& recvData) } CLOSE_GOSSIP_CLEAR_SHARING_INFO(); - -#undef CLOSE_GOSSIP_CLEAR_SHARING_INFO } void WorldSession::HandleQuestgiverQueryQuestOpcode(WorldPacket& recvData) |