From 88dd2856425de7eb0d37db5ae8c04b67df0ddc85 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 2 Apr 2022 13:04:08 +0200 Subject: [PATCH] Fixes pedantic problem --- src/Battling/ScriptHandling/BattleScript.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Battling/ScriptHandling/BattleScript.hpp b/src/Battling/ScriptHandling/BattleScript.hpp index 8051872..df448c0 100644 --- a/src/Battling/ScriptHandling/BattleScript.hpp +++ b/src/Battling/ScriptHandling/BattleScript.hpp @@ -24,7 +24,7 @@ namespace CreatureLib::Battling { public: BattleScript(const ArbUt::OptionalBorrowedPtr& owner) { _owner = owner; }; - NO_COPY_OR_MOVE(BattleScript); + NO_COPY_OR_MOVE(BattleScript) inline ArbUt::OptionalBorrowedPtr GetOwner() const noexcept { return _owner; } inline bool IsSuppressed() const noexcept { return _suppressed > 0; }