6 #ifndef METALL_CONTAINER_UNORDERED_FLAT_SET_HPP
7 #define METALL_CONTAINER_UNORDERED_FLAT_SET_HPP
11 static_assert(BOOST_VERSION >= 108100,
"Unsupported Boost version");
12 #include <boost/unordered/unordered_flat_set.hpp>
20 template <
class Key,
class Hash = std::hash<Key>,
21 class KeyEqual = std::equal_to<Key>,
22 class Allocator = manager::allocator_type<Key>>
24 boost::unordered_flat_set<Key, Hash, KeyEqual, Allocator>;