aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Maps/ZoneScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/game/Maps/ZoneScript.cpp')
-rw-r--r--src/server/game/Maps/ZoneScript.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/server/game/Maps/ZoneScript.cpp b/src/server/game/Maps/ZoneScript.cpp
index 9dce551910c..03ddf65e6cb 100644
--- a/src/server/game/Maps/ZoneScript.cpp
+++ b/src/server/game/Maps/ZoneScript.cpp
@@ -19,13 +19,12 @@
#include "Creature.h"
#include "GameEventSender.h"
-ZoneScript::ZoneScript()
-{
-}
-
-ZoneScript::~ZoneScript()
-{
-}
+ZoneScript::ZoneScript() = default;
+ZoneScript::ZoneScript(ZoneScript const& right) = default;
+ZoneScript::ZoneScript(ZoneScript&& right) noexcept = default;
+ZoneScript& ZoneScript::operator=(ZoneScript const& right) = default;
+ZoneScript& ZoneScript::operator=(ZoneScript&& right) noexcept = default;
+ZoneScript::~ZoneScript() = default;
uint32 ZoneScript::GetCreatureEntry(ObjectGuid::LowType /*guidLow*/, CreatureData const* data)
{