aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Maps/ZoneScript.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-06-13 19:31:03 +0200
committerShauren <shauren.trinity@gmail.com>2025-06-13 19:31:03 +0200
commitf94d87b00fe384df055d197fe957db083e4fd3c6 (patch)
tree39b2615671a7feb14634ea9ec5b06c80a95dc484 /src/server/game/Maps/ZoneScript.h
parent36332d2463cdb98171878ab8c836a875fe3493cc (diff)
Core/Scripts: Mark script base class constructors noexcept
Diffstat (limited to 'src/server/game/Maps/ZoneScript.h')
-rw-r--r--src/server/game/Maps/ZoneScript.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Maps/ZoneScript.h b/src/server/game/Maps/ZoneScript.h
index 0f1c1e1651e..51f72de0d48 100644
--- a/src/server/game/Maps/ZoneScript.h
+++ b/src/server/game/Maps/ZoneScript.h
@@ -63,7 +63,7 @@ public:
class TC_GAME_API ZoneScript
{
public:
- ZoneScript();
+ ZoneScript() noexcept;
ZoneScript(ZoneScript const& right);
ZoneScript(ZoneScript&& right) noexcept;
ZoneScript& operator=(ZoneScript const& right);