Expand calls to generic_find_node

This commit is contained in:
Daniel James
2017-04-23 10:09:18 +01:00
parent 435b7450d4
commit 19a45e028a
3 changed files with 12 additions and 13 deletions

View File

@@ -3230,13 +3230,6 @@ struct table : boost::unordered::detail::functions<typename Types::hasher,
// Find Node
template <typename Key, typename Hash, typename Pred>
node_pointer generic_find_node(
Key const& k, Hash const& hf, Pred const& eq) const
{
return this->find_node_impl(policy::apply_hash(hf, k), k, eq);
}
node_pointer find_node(std::size_t key_hash, const_key_type& k) const
{
return this->find_node_impl(key_hash, k, this->key_eq());