aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/common/cachedselect_test.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/common/cachedselect_test.cpp
parent67739bd0d1d78e5d27400139b7742c32662f39d8 (diff)
C++ style fix: Use foo() instead of foo(void)
Diffstat (limited to 'searchcore/src/tests/proton/common/cachedselect_test.cpp')
-rw-r--r--searchcore/src/tests/proton/common/cachedselect_test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/searchcore/src/tests/proton/common/cachedselect_test.cpp b/searchcore/src/tests/proton/common/cachedselect_test.cpp
index 6d1f7735479..fb5e40767ab 100644
--- a/searchcore/src/tests/proton/common/cachedselect_test.cpp
+++ b/searchcore/src/tests/proton/common/cachedselect_test.cpp
@@ -88,7 +88,7 @@ const int32_t noIntVal = std::numeric_limits<int32_t>::min();
DocumentTypeRepo::UP
-makeDocTypeRepo(void)
+makeDocTypeRepo()
{
DocumenttypesConfigBuilderHelper builder;
builder.document(doc_type_id, type_name,
@@ -194,7 +194,7 @@ public:
}
uint32_t
- getGets(void) const
+ getGets() const
{
return _gets;
}
@@ -293,9 +293,9 @@ public:
MyAttributeManager _amgr;
MyDB::UP _db;
- TestFixture(void);
+ TestFixture();
- ~TestFixture(void);
+ ~TestFixture();
CachedSelect::SP
testParse(const string &selection,
@@ -304,7 +304,7 @@ public:
};
-TestFixture::TestFixture(void)
+TestFixture::TestFixture()
: _repoUP(),
_hasFields(true),
_amgr(),
@@ -320,7 +320,7 @@ TestFixture::TestFixture(void)
}
-TestFixture::~TestFixture(void)
+TestFixture::~TestFixture()
{
}