aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/reprocessing/reprocessing_runner
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-05-24 10:09:49 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-05-24 10:09:49 +0000
commitadbf51ef6537c663317886a31d908a0ef0e5269d (patch)
tree193e388361b8942100fe9120a5594c3512180a17 /searchcore/src/tests/proton/reprocessing/reprocessing_runner
parent67739bd0d1d78e5d27400139b7742c32662f39d8 (diff)
C++ style fix: Use foo() instead of foo(void)
Diffstat (limited to 'searchcore/src/tests/proton/reprocessing/reprocessing_runner')
-rw-r--r--searchcore/src/tests/proton/reprocessing/reprocessing_runner/reprocessing_runner_test.cpp2
1 files changed, 1 insertions, 1 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 4d9cbd307ba..73a849c6211 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
@@ -54,7 +54,7 @@ struct MyTask : public IReprocessingTask
}
virtual Progress
- getProgress(void) const override
+ getProgress() const override
{
return Progress(_myProgress, _weight);
}