1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:37:35 +00:00

Everywhere: Mark overridden methods 'override'

This is good practice, and fixes some IDE warnings.
This commit is contained in:
Ben Wiederhake 2021-10-31 23:32:56 +01:00 committed by Andreas Kling
parent 2e6bb987a3
commit 6b75a4dfc3
5 changed files with 9 additions and 9 deletions

View file

@ -36,7 +36,7 @@ public:
void send_command(const Command&);
virtual void event(Core::Event&);
virtual void event(Core::Event&) override;
Core::IODevice& in() { return *m_in; }
Core::IODevice& out() { return *m_out; }