From: Vadim Zeitlin Date: Fri, 3 Dec 2010 12:39:34 +0000 (+0000) Subject: Mention in wxHashSet documentation that its contents is not sorted. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9d6196a91e09c876b614da3deec617b9a67322dd?ds=inline Mention in wxHashSet documentation that its contents is not sorted. The documentation gave a wrong impression that this class was a std::set replacement which it isn't. See #12727. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/hashset.h b/interface/wx/hashset.h index 301ea349ac..36469e47e5 100644 --- a/interface/wx/hashset.h +++ b/interface/wx/hashset.h @@ -11,8 +11,9 @@ This is a simple, type-safe, and reasonably efficient hash set class, whose interface is a subset of the interface of STL containers. - In particular, the interface is modeled after std::set, and the various, - non-standard, std::hash_map. + + The interface is similar to std::tr1::hash_set or std::set classes but + notice that, unlike std::set, the contents of a hash set is not sorted. Example: @code