diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
commit | a0fe8c436e8286dca0deb390b75a683a86206e94 (patch) | |
tree | de9b863ff66252c3894e9a5c3743498d64cd5fbb /libcxx/include/map | |
parent | ac407594c26f037cd5cf5576536e4a2e3cbd10bc (diff) | |
download | bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.tar.gz bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.zip |
Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris).
llvm-svn: 125510
Diffstat (limited to 'libcxx/include/map')
-rw-r--r-- | libcxx/include/map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/map b/libcxx/include/map index 6b7bff6ceb1..85e10f613f5 100644 --- a/libcxx/include/map +++ b/libcxx/include/map @@ -1042,7 +1042,7 @@ map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(const_iterator __hint, else if (__tree_.value_comp().key_comp()(__hint->first, __k)) // check after { // *__hint < __k - const_iterator __next = next(__hint); + const_iterator __next = _STD::next(__hint); if (__next == end() || __tree_.value_comp().key_comp()(__k, __next->first)) { // *__hint < __k < *next(__hint) |