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