Unordered: Remove the deprecated equality implementation.

[SVN r81385]
This commit is contained in:
Daniel James
2012-11-17 10:30:19 +00:00
parent 7eefe62efe
commit ef4d33ce89
9 changed files with 24 additions and 243 deletions

View File

@@ -75,11 +75,6 @@ namespace detail {
return no_key();
}
#endif
static bool compare_mapped(value_type const&, value_type const&)
{
return true;
}
};
template <class Key, class ValueType>
@@ -182,11 +177,6 @@ BOOST_UNORDERED_KEY_FROM_TUPLE(boost::)
#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
BOOST_UNORDERED_KEY_FROM_TUPLE(std::)
#endif
static bool compare_mapped(value_type const& x, value_type const& y)
{
return x.second == y.second;
}
};
}}}