Unordered: Fix equality for multimap/multiset.

[SVN r77833]
This commit is contained in:
Daniel James
2012-04-08 15:29:49 +00:00
parent c8c71d0ad1
commit e64f82ed03
2 changed files with 9 additions and 2 deletions

View File

@@ -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;