Fixes pedantic problem
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-04-02 13:04:08 +02:00
parent 842d708996
commit 88dd285642
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

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; }