diff options
Diffstat (limited to 'src/server/game/Spells/SpellScript.h')
-rw-r--r-- | src/server/game/Spells/SpellScript.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Spells/SpellScript.h b/src/server/game/Spells/SpellScript.h index 5857d63fb08..8a85e7e2a03 100644 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -73,7 +73,7 @@ class TC_GAME_API SpellScriptBase // internal use classes & functions // DO NOT OVERRIDE THESE IN SCRIPTS public: - SpellScriptBase(); + SpellScriptBase() noexcept; virtual ~SpellScriptBase(); SpellScriptBase(SpellScriptBase const& right) = delete; @@ -842,7 +842,7 @@ public: // left for custom compatibility only, DO NOT USE #define PrepareSpellScript(CLASSNAME) - SpellScript(); + SpellScript() noexcept; ~SpellScript(); bool _Validate(SpellInfo const* entry) override; bool _Load(Spell* spell); @@ -2090,7 +2090,7 @@ public: #define PrepareAuraScript(CLASSNAME) public: - AuraScript(); + AuraScript() noexcept; ~AuraScript(); bool _Validate(SpellInfo const* entry) override; bool _Load(Aura* aura); |