diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-06-13 19:31:03 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-06-13 19:31:03 +0200 |
commit | f94d87b00fe384df055d197fe957db083e4fd3c6 (patch) | |
tree | 39b2615671a7feb14634ea9ec5b06c80a95dc484 /src/server/game/Instances/InstanceScript.h | |
parent | 36332d2463cdb98171878ab8c836a875fe3493cc (diff) |
Core/Scripts: Mark script base class constructors noexcept
Diffstat (limited to 'src/server/game/Instances/InstanceScript.h')
-rw-r--r-- | src/server/game/Instances/InstanceScript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Instances/InstanceScript.h b/src/server/game/Instances/InstanceScript.h index 2ac6c0da04f..228304d8b06 100644 --- a/src/server/game/Instances/InstanceScript.h +++ b/src/server/game/Instances/InstanceScript.h @@ -182,7 +182,7 @@ typedef std::map<uint32 /*entry*/, uint32 /*type*/> ObjectInfoMap; class TC_GAME_API InstanceScript : public ZoneScript { public: - explicit InstanceScript(InstanceMap* map); + explicit InstanceScript(InstanceMap* map) noexcept; InstanceScript(InstanceScript const& right) = delete; InstanceScript(InstanceScript&& right) = delete; InstanceScript& operator=(InstanceScript const& right) = delete; |