diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-03 19:58:09 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:54 +0200 |
commit | b8e33c5aa3417bdf7989bef55cc449f75f806b76 (patch) | |
tree | 07cdf7386b527a309ad7673d2c8b5dcf2de43f3c /src/interfaces/input.hpp | |
parent | 93123e97251fc791c1cac193d675cce9a1ac2de6 (diff) |
refactor: remove virtual from input handler interface destructor
Diffstat (limited to 'src/interfaces/input.hpp')
-rw-r--r-- | src/interfaces/input.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<char> { public: - virtual ~IInputHandler() = default; + ~IInputHandler() override = default; void listen() const override = 0; |