This commit is contained in:
Siarhei Fedartsou 2024-07-10 20:30:29 +02:00
parent 7eb2d93a82
commit 13448e4f9a

View File

@ -124,7 +124,7 @@ template <typename NodeID, typename Key> class UnorderedMapStorage
private:
template <typename K, typename V>
using UnorderedMap = std::
unordered_map<K, V, std::hash<K>, std::equal_to<K>, PoolAllocator<std::pair<const K, V>>>;
unordered_map<K, V/*, std::hash<K>, std::equal_to<K>, PoolAllocator<std::pair<const K, V>>*/>;
UnorderedMap<NodeID, Key> nodes;
};