aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/reprocessing/reprocessing_runner
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-12 11:53:02 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-12 12:35:35 +0200
commitd0bedbb2032bd0ce14067f92deb2ef4cf0f48806 (patch)
treea3004253b505fa37825664dafc91eab809aef2ce /searchcore/src/tests/proton/reprocessing/reprocessing_runner
parent5c6fcf8f1fa84dbff2cd202de019b0b60e51909f (diff)
add override in searchcore module
Diffstat (limited to 'searchcore/src/tests/proton/reprocessing/reprocessing_runner')
-rw-r--r--searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp b/searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp
index c4c462ecfa1..4d9cbd307ba 100644
--- a/searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp
+++ b/searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp
@@ -44,7 +44,7 @@ struct MyTask : public IReprocessingTask
}
virtual void
- run()
+ run() override
{
ASSERT_EQUAL(_initProgress, _runner.getProgress());
_myProgress = 0.5;
@@ -54,7 +54,7 @@ struct MyTask : public IReprocessingTask
}
virtual Progress
- getProgress(void) const
+ getProgress(void) const override
{
return Progress(_myProgress, _weight);
}