summaryrefslogtreecommitdiffstats
path: root/libcxx/include/ext/hash_set
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/ext/hash_set')
-rw-r--r--libcxx/include/ext/hash_set6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/ext/hash_set b/libcxx/include/ext/hash_set
index 1f8712bce4f..e205db81caa 100644
--- a/libcxx/include/ext/hash_set
+++ b/libcxx/include/ext/hash_set
@@ -627,9 +627,9 @@ operator==(const hash_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
{
_EqRng __xeq = __x.equal_range(*__i);
_EqRng __yeq = __y.equal_range(*__i);
- if (_STD::distance(__xeq.first, __xeq.second) !=
- _STD::distance(__yeq.first, __yeq.second) ||
- !_STD::is_permutation(__xeq.first, __xeq.second, __yeq.first))
+ if (_VSTD::distance(__xeq.first, __xeq.second) !=
+ _VSTD::distance(__yeq.first, __yeq.second) ||
+ !_VSTD::is_permutation(__xeq.first, __xeq.second, __yeq.first))
return false;
__i = __xeq.second;
}
OpenPOWER on IntegriCloud