diff options
author | Louis Dionne <ldionne@apple.com> | 2019-01-24 19:09:22 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-01-24 19:09:22 +0000 |
commit | c43f673090d86237d6eb832c4244fc121070486d (patch) | |
tree | 4334fcc0d34a9f5c90e7ec7e04a2f5c5ece775c2 /clang/lib/Index | |
parent | 18972d1ee960b6903aba3eaaef66f5d84a8010a2 (diff) | |
download | bcm5719-llvm-c43f673090d86237d6eb832c4244fc121070486d.tar.gz bcm5719-llvm-c43f673090d86237d6eb832c4244fc121070486d.zip |
[libcxx] Portability fix: unordered_set and unordered_multiset iterators are not required to be the same
The unordered_set and unordered_multiset iterators are specified in the standard as follows:
using iterator = implementation-defined; // see [container.requirements]
using const_iterator = implementation-defined; // see [container.requirements]
using local_iterator = implementation-defined; // see [container.requirements]
using const_local_iterator = implementation-defined; // see [container.requirements]
The pairs iterator/const_iterator and local_iterator/const_local_iterator
are not required to be the same. The reasonable requirement would be that
iterator can convert to const_iterator and local_iterator can convert to
const_local_iterator. This patch weakens the check and makes the test
more portable.
Reviewed as https://reviews.llvm.org/D56493.
Thanks to Andrey Maksimov for the patch.
llvm-svn: 352083
Diffstat (limited to 'clang/lib/Index')
0 files changed, 0 insertions, 0 deletions