summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/enumstore
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-09-13 13:03:31 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-09-13 13:03:31 +0000
commit1d234f9778e73fbd8cbc6211757300416ef19b3f (patch)
treed92d3e7b9c5f4a8b78a0e35c2cd5531d7180372a /searchlib/src/tests/attribute/enumstore
parentf6e8fb32ebd8859f9ac181f138e8f5d1b4cba700 (diff)
Style changes and function renaming in enum store dictionary.
Diffstat (limited to 'searchlib/src/tests/attribute/enumstore')
-rw-r--r--searchlib/src/tests/attribute/enumstore/enumstore_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp b/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
index fe4b6ca1685..7ad3227917b 100644
--- a/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
+++ b/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
@@ -140,7 +140,7 @@ testUniques(const StringEnumStore& ses, const std::vector<std::string>& unique)
{
const auto* enumDict = dynamic_cast<const EnumStoreDictionary<DictionaryT>*>(&ses.get_dictionary());
assert(enumDict != nullptr);
- const DictionaryT& dict = enumDict->getDictionary();
+ const DictionaryT& dict = enumDict->get_raw_dictionary();
uint32_t i = 0;
EnumIndex idx;
for (typename DictionaryT::Iterator iter = dict.begin();