mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-13 22:11:01 +01:00
Unordered: Fix equality for multimap/multiset.
[SVN r77833]
This commit is contained in:
@@ -330,7 +330,7 @@ namespace boost { namespace unordered { namespace detail {
|
||||
}
|
||||
|
||||
node_pointer start = n1;
|
||||
for(;n1 != end2; n1 = static_cast<node_pointer>(n1->next_))
|
||||
for(;n1 != end1; n1 = static_cast<node_pointer>(n1->next_))
|
||||
{
|
||||
value_type const& v = n1->value();
|
||||
if (find(start, n1, v)) continue;
|
||||
|
||||
Reference in New Issue
Block a user