Skip to content

Commit

Permalink
fix map definition without robin_hood
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Feb 27, 2024
1 parent e2cff7f commit 242e41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/include/idol/containers/Map.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ namespace idol {
class T,
class Hash = std::hash<Key>,
class KeyEqual = std::equal_to<Key>,
class Allocator = std::allocator<idol::Pair<const Key, T> >
class Allocator = std::allocator<std::pair<const Key, T> >
>
using Map = std::unordered_map<Key, T, Hash, KeyEqual, Allocator>;

Expand Down

0 comments on commit 242e41f

Please sign in to comment.