summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-06-07 16:47:09 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-06-07 16:47:09 +0200
commit0dc3ae0c488677fe75db5059895116658391c4ba (patch)
treeb26613531c312d0c2d7ed6222965873c008b6333 /searchcore
parenta433da2ffd8d96d5ef7f08d243ac1b357c59e70b (diff)
enumRange is now constexpr
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/common/selectpruner_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/common/selectpruner_test.cpp b/searchcore/src/tests/proton/common/selectpruner_test.cpp
index 0a181de39ec..2d6584bdc0c 100644
--- a/searchcore/src/tests/proton/common/selectpruner_test.cpp
+++ b/searchcore/src/tests/proton/common/selectpruner_test.cpp
@@ -94,7 +94,7 @@ rsString(const ResultSet &s)
{
std::ostringstream os;
bool first = true;
- uint32_t erange = Result::enumRange();
+ uint32_t erange = Result::enumRange;
for (uint32_t e = 0; e < erange; ++e) {
if (s.hasEnum(e)) {
if (!first)