std:: hashmap variant fix

v1
Brett 2024-02-29 08:20:23 -05:00
parent b40c40efdc
commit 47354e1d8a
1 changed files with 1 additions and 1 deletions

View File

@ -41,9 +41,9 @@ namespace blt
using hashset_t = phmap::flat_hash_set<T, Hash, Eq, Alloc>;
}
#else
namespace blt {
#include <unordered_map>
#include <unordered_set>
namespace blt {
template<typename K, typename V,
typename Hash = std::hash<K>,