summaryrefslogtreecommitdiff
path: root/src/event
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-01-31 19:37:53 -0800
committerRosen Penev <rosenp@gmail.com>2020-01-31 21:27:26 -0800
commitb64fdae938871976f0fdb6ab0d1a6f623ae9cd64 (patch)
treef14661c6749632066cbf33c095c633a2128f4fd6 /src/event
parent0b2444450f1dd3e249529d14418abf89579ad09a (diff)
[clang-tidy] use override instead of virtual
Found with modernize-use-override Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/event')
-rw-r--r--src/event/FullyBufferedSocket.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/FullyBufferedSocket.hxx b/src/event/FullyBufferedSocket.hxx
index 6d25e08dc..6a33ab155 100644
--- a/src/event/FullyBufferedSocket.hxx
+++ b/src/event/FullyBufferedSocket.hxx
@@ -69,7 +69,7 @@ protected:
/* virtual methods from class SocketMonitor */
bool OnSocketReady(unsigned flags) noexcept override;
- virtual void OnIdle() noexcept override;
+ void OnIdle() noexcept override;
};
#endif