aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Battlegrounds/BattlegroundScript.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/Battlegrounds/BattlegroundScript.h
parent36332d2463cdb98171878ab8c836a875fe3493cc (diff)
Core/Scripts: Mark script base class constructors noexcept
Diffstat (limited to 'src/server/game/Battlegrounds/BattlegroundScript.h')
-rw-r--r--src/server/game/Battlegrounds/BattlegroundScript.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/BattlegroundScript.h b/src/server/game/Battlegrounds/BattlegroundScript.h
index 1780052fc92..0ad91c2ca28 100644
--- a/src/server/game/Battlegrounds/BattlegroundScript.h
+++ b/src/server/game/Battlegrounds/BattlegroundScript.h
@@ -32,7 +32,7 @@ class ModuleReference;
class TC_GAME_API BattlegroundScript : public ZoneScript
{
public:
- explicit BattlegroundScript(BattlegroundMap* map);
+ explicit BattlegroundScript(BattlegroundMap* map) noexcept;
~BattlegroundScript() override = default;
virtual void OnInit() { }