From d168dd31e04c0879344d37e606f2bc2ae2c8dfe0 Mon Sep 17 00:00:00 2001 From: john30 Date: Sat, 4 Mar 2017 13:51:25 +0100 Subject: [PATCH] use override declaration --- src/lib/utils/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/utils/thread.h b/src/lib/utils/thread.h index 9b860d62..f73c4f39 100644 --- a/src/lib/utils/thread.h +++ b/src/lib/utils/thread.h @@ -121,10 +121,10 @@ class WaitThread : public Thread { virtual ~WaitThread(); // @copydoc - virtual void stop(); + virtual void stop() override; // @copydoc - virtual bool join(); + virtual bool join() override; /** * Wait for the specified amount of time.