aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/command.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/command.hpp')
-rw-r--r--src/interfaces/command.hpp2
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;