diff --git a/src/Collections/StringViewDictionary.hpp b/src/Collections/StringViewDictionary.hpp index ef822be..115e812 100644 --- a/src/Collections/StringViewDictionary.hpp +++ b/src/Collections/StringViewDictionary.hpp @@ -33,6 +33,7 @@ namespace ArbUt { private: map_type _map; + public: /// @brief The type used for the indexer of the dictionary. typedef StringView keyType; diff --git a/tests/DictionaryTests.cpp b/tests/DictionaryTests.cpp index ad02aa8..e897b6d 100644 --- a/tests/DictionaryTests.cpp +++ b/tests/DictionaryTests.cpp @@ -108,7 +108,6 @@ TEST_CASE("Create Dictionary with different types, insert values, iterate over k CHECK(i == 3); } - TEST_CASE("Create StringViewDictionary, insert values, get values by hash") { auto dic = StringViewDictionary(5); dic.Insert("foo"_cnc, 5);