Skip to content

Commit

Permalink
Merge pull request #82 from tomerv/patch-2
Browse files Browse the repository at this point in the history
Fix minor documentation error
  • Loading branch information
igaztanaga committed Dec 7, 2023
2 parents 060a639 + ea070dc commit d547bdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/intrusive/unordered_set.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ class unordered_set_impl
template<class KeyType, class KeyHasher, class KeyEqual>
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
Expand Down Expand Up @@ -767,7 +767,7 @@ class unordered_multiset_impl
template<class KeyType, class KeyHasher, class KeyEqual>
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
Expand Down

0 comments on commit d547bdb

Please sign in to comment.