Style fixes.
continuous-integration/drone/push Build is failing Details
continuous-integration/drone Build is failing Details

This commit is contained in:
Deukhoofd 2022-05-16 18:38:05 +02:00
parent 39ea396e2b
commit 468f5b5e05
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
2 changed files with 1 additions and 1 deletions

View File

@ -33,6 +33,7 @@ namespace ArbUt {
private:
map_type _map;
public:
/// @brief The type used for the indexer of the dictionary.
typedef StringView keyType;

View File

@ -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<i32>(5);
dic.Insert("foo"_cnc, 5);