Fixes pedantic problem
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-04-02 13:04:08 +02:00
parent 842d708996
commit 88dd285642

View File

@@ -24,7 +24,7 @@ namespace CreatureLib::Battling {
public:
BattleScript(const ArbUt::OptionalBorrowedPtr<void>& owner) { _owner = owner; };
NO_COPY_OR_MOVE(BattleScript);
NO_COPY_OR_MOVE(BattleScript)
inline ArbUt::OptionalBorrowedPtr<void> GetOwner() const noexcept { return _owner; }
inline bool IsSuppressed() const noexcept { return _suppressed > 0; }