From 468f5b5e05c777de4489fbd1049d1623124c9f5b Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Mon, 16 May 2022 18:38:05 +0200 Subject: [PATCH] Style fixes. --- src/Collections/StringViewDictionary.hpp | 1 + tests/DictionaryTests.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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);