From b8e33c5aa3417bdf7989bef55cc449f75f806b76 Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 3 Mar 2022 19:58:09 +0100 Subject: refactor: remove virtual from input handler interface destructor --- src/interfaces/input.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/interfaces/input.hpp b/src/interfaces/input.hpp index 2e93b5d..b8679c7 100644 --- a/src/interfaces/input.hpp +++ b/src/interfaces/input.hpp @@ -5,7 +5,7 @@ class IInputHandler : public IObservable { public: - virtual ~IInputHandler() = default; + ~IInputHandler() override = default; void listen() const override = 0; -- cgit v1.2.3-18-g5258