diff options
Diffstat (limited to 'src/interfaces/command.hpp')
-rw-r--r-- | src/interfaces/command.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/command.hpp b/src/interfaces/command.hpp index 62d7a59..6220af1 100644 --- a/src/interfaces/command.hpp +++ b/src/interfaces/command.hpp @@ -7,7 +7,7 @@ class ICommand : public ISubscriber<std::nullptr_t> { public: - virtual ~ICommand() = default; + ~ICommand() override = default; virtual void execute() noexcept = 0; |