Style fixes.
This commit is contained in:
parent
39ea396e2b
commit
468f5b5e05
|
@ -33,6 +33,7 @@ namespace ArbUt {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
map_type _map;
|
map_type _map;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// @brief The type used for the indexer of the dictionary.
|
/// @brief The type used for the indexer of the dictionary.
|
||||||
typedef StringView keyType;
|
typedef StringView keyType;
|
||||||
|
|
|
@ -108,7 +108,6 @@ TEST_CASE("Create Dictionary with different types, insert values, iterate over k
|
||||||
CHECK(i == 3);
|
CHECK(i == 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("Create StringViewDictionary, insert values, get values by hash") {
|
TEST_CASE("Create StringViewDictionary, insert values, get values by hash") {
|
||||||
auto dic = StringViewDictionary<i32>(5);
|
auto dic = StringViewDictionary<i32>(5);
|
||||||
dic.Insert("foo"_cnc, 5);
|
dic.Insert("foo"_cnc, 5);
|
||||||
|
|
Loading…
Reference in New Issue