summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/docsummary/docsummary.cpp
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/docsummary/docsummary.cpp
parent67739bd0d1d78e5d27400139b7742c32662f39d8 (diff)
C++ style fix: Use foo() instead of foo(void)
Diffstat (limited to 'searchcore/src/tests/proton/docsummary/docsummary.cpp')
-rw-r--r--searchcore/src/tests/proton/docsummary/docsummary.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/tests/proton/docsummary/docsummary.cpp b/searchcore/src/tests/proton/docsummary/docsummary.cpp
index d7311a2cc63..5567eb970bb 100644
--- a/searchcore/src/tests/proton/docsummary/docsummary.cpp
+++ b/searchcore/src/tests/proton/docsummary/docsummary.cpp
@@ -106,7 +106,7 @@ public:
{
}
- ~BuildContext(void)
+ ~BuildContext()
{
}
@@ -126,7 +126,7 @@ public:
namespace {
const char *
-getDocTypeName(void)
+getDocTypeName()
{
return "searchdocument";
}
@@ -306,7 +306,7 @@ private:
}
const std::set<vespalib::string> &
- getMarkupFields(void) const
+ getMarkupFields() const
{
return _markupFields;
}