diff options
Diffstat (limited to 'source/core/StarFlatHashTable.hpp')
-rw-r--r-- | source/core/StarFlatHashTable.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarFlatHashTable.hpp b/source/core/StarFlatHashTable.hpp index e9a8680..793c573 100644 --- a/source/core/StarFlatHashTable.hpp +++ b/source/core/StarFlatHashTable.hpp @@ -39,7 +39,7 @@ private: size_t hash; }; - typedef std::vector<Bucket, typename Allocator::template rebind<Bucket>::other> Buckets; + typedef std::vector<Bucket, typename std::allocator_traits<Allocator>::template rebind_alloc<Bucket>> Buckets; public: struct const_iterator { |