Unordered: remove use of the 'or' keyword.

[SVN r71602]
This commit is contained in:
Daniel James
2011-04-29 11:03:29 +00:00
parent b1912055a9
commit a40422fada

View File

@ -99,7 +99,7 @@ namespace boost { namespace unordered { namespace detail {
value_type const& v = node::get_value(n1);
if (find(start, n1, v)) continue;
std::size_t matches = count_equal(n2, end2, v);
if (!matches or matches != 1 + count_equal(n1->next_, end1, v))
if (!matches || matches != 1 + count_equal(n1->next_, end1, v))
return false;
}