Add override keyword on all derived functions:

This silences warnings on latest clang compiler.
This commit is contained in:
Howard Hinnant
2015-09-17 15:37:48 -04:00
committed by Edward Hennis
parent b2cf1e4c65
commit e1fc81f66f
22 changed files with 164 additions and 150 deletions

View File

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