diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-07 16:38:45 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-07 16:38:45 +0100 |
commit | 71bffa986443ee464f41284b47eaf7c8b88695ae (patch) | |
tree | bdec82256a5e7c0d62cddf0d54e67adef52352c9 /Kernel/TTY.h | |
parent | 61a84193d7d28319c8f7d409a6c70edbcae47cac (diff) | |
download | serenity-71bffa986443ee464f41284b47eaf7c8b88695ae.zip |
Fix whiny build.
Diffstat (limited to 'Kernel/TTY.h')
-rw-r--r-- | Kernel/TTY.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY.h b/Kernel/TTY.h index 1770e53a3c..856e8c79d8 100644 --- a/Kernel/TTY.h +++ b/Kernel/TTY.h @@ -16,7 +16,7 @@ public: pid_t pgid() const { return m_pgid; } protected: - virtual bool isTTY() const final { return true; } + virtual bool isTTY() const final override { return true; } TTY(unsigned major, unsigned minor); void emit(byte); |