From ea070dc30fc193aa3eaba8cd3da2def28f72ec9f Mon Sep 17 00:00:00 2001 From: tomerv Date: Sat, 28 Oct 2023 23:35:43 +0300 Subject: [PATCH] Fix minor documentation error --- include/boost/intrusive/unordered_set.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/intrusive/unordered_set.hpp b/include/boost/intrusive/unordered_set.hpp index 0a65570..7b659fe 100644 --- a/include/boost/intrusive/unordered_set.hpp +++ b/include/boost/intrusive/unordered_set.hpp @@ -277,7 +277,7 @@ class unordered_set_impl template iterator find(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func); - //! @copydoc ::boost::intrusive::hashtable::count(const key_type &)const + //! @copydoc ::boost::intrusive::hashtable::find(const key_type &)const const_iterator find(const key_type &key) const; //! @copydoc ::boost::intrusive::hashtable::find(const KeyType &,KeyHasher,KeyEqual)const @@ -767,7 +767,7 @@ class unordered_multiset_impl template iterator find(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func); - //! @copydoc ::boost::intrusive::hashtable::count(const key_type &)const + //! @copydoc ::boost::intrusive::hashtable::find(const key_type &)const const_iterator find(const key_type &key) const; //! @copydoc ::boost::intrusive::hashtable::find(const KeyType &,KeyHasher,KeyEqual)const