aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-10-04 15:07:27 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-10-04 15:07:27 +0000
commit83471c97e2e22fcdea6883ab1eaf71042a8b7ad5 (patch)
tree0c085351dbc5fd2cea90f8fa5b451b8c567ec0e5
parentb5e48d836df202f136d36e463774f4fd77fa895f (diff)
parent182b7c3ab9bf9a2601e42f39927bf9198f8d8ca7 (diff)
downloadclang-83471c97e2e22fcdea6883ab1eaf71042a8b7ad5.tar.gz
Merge "Snap for 10900817 from d0210ae77cd0cee7e2d1b66f774581727eaf565d to sdk-release" into sdk-releaseplatform-tools-34.0.5
-rw-r--r--include/clang/Serialization/ContinuousRangeMap.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/include/clang/Serialization/ContinuousRangeMap.h b/include/clang/Serialization/ContinuousRangeMap.h
index 244b01b22a..edc42441b2 100644
--- a/include/clang/Serialization/ContinuousRangeMap.h
+++ b/include/clang/Serialization/ContinuousRangeMap.h
@@ -117,14 +117,17 @@ public:
~Builder() {
std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
- std::unique(Self.Rep.begin(), Self.Rep.end(),
- [](const_reference A, const_reference B) {
- // FIXME: we should not allow any duplicate keys, but there are a lot of
- // duplicate 0 -> 0 mappings to remove first.
- assert((A == B || A.first != B.first) &&
- "ContinuousRangeMap::Builder given non-unique keys");
- return A == B;
- });
+ Self.Rep.erase(
+ std::unique(
+ Self.Rep.begin(), Self.Rep.end(),
+ [](const_reference A, const_reference B) {
+ // FIXME: we should not allow any duplicate keys, but there are
+ // a lot of duplicate 0 -> 0 mappings to remove first.
+ assert((A == B || A.first != B.first) &&
+ "ContinuousRangeMap::Builder given non-unique keys");
+ return A == B;
+ }),
+ Self.Rep.end());
}
void insert(const value_type &Val) {