mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Add override keyword on all derived functions:
This silences warnings on latest clang compiler.
This commit is contained in:
committed by
Edward Hennis
parent
b2cf1e4c65
commit
e1fc81f66f
@@ -553,7 +553,7 @@ private:
|
||||
// Invariants:
|
||||
// <none>
|
||||
//
|
||||
void processTask ()
|
||||
void processTask () override
|
||||
{
|
||||
Job job;
|
||||
|
||||
@@ -624,7 +624,7 @@ private:
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
void onStop ()
|
||||
void onStop () override
|
||||
{
|
||||
// VFALCO NOTE I wanted to remove all the jobs that are skippable
|
||||
// but then the Workers count of tasks to process
|
||||
@@ -676,7 +676,7 @@ private:
|
||||
*/
|
||||
}
|
||||
|
||||
void onChildrenStopped ()
|
||||
void onChildrenStopped () override
|
||||
{
|
||||
ScopedLock lock (m_mutex);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user