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