diff options
Diffstat (limited to 'source/core/StarFlatHashMap.hpp')
-rw-r--r-- | source/core/StarFlatHashMap.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarFlatHashMap.hpp b/source/core/StarFlatHashMap.hpp index 111aa6b..7fd21ff 100644 --- a/source/core/StarFlatHashMap.hpp +++ b/source/core/StarFlatHashMap.hpp @@ -31,7 +31,7 @@ private: key_type const& operator()(TableValue const& value) const; }; - typedef FlatHashTable<TableValue, key_type, GetKey, Hash, Equals, typename Allocator::template rebind<TableValue>::other> Table; + typedef FlatHashTable<TableValue, key_type, GetKey, Hash, Equals, typename std::allocator_traits<Allocator>::template rebind_alloc<TableValue>> Table; public: struct const_iterator { |