2#include <boost/functional/hash.hpp>
8 std::size_t
operator()(std::pair<T, T>
const& p)
const {
10 boost::hash_combine(seed, p.first);
11 boost::hash_combine(seed, p.second);
Definition: custom_hash.hpp:6
std::size_t operator()(std::pair< T, T > const &p) const
Definition: custom_hash.hpp:8