1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Fix whiny build.

This commit is contained in:
Andreas Kling 2018-11-07 16:38:45 +01:00
parent 61a84193d7
commit 71bffa9864
3 changed files with 7 additions and 5 deletions

View file

@ -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);