Skip to content

Commit 495f99a

Browse files
committed
ci
1 parent 3a4b98a commit 495f99a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__flat_map/flat_multimap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class flat_multimap {
9393
static_assert(!is_same_v<_MappedContainer, std::vector<bool>>, "vector<bool> is not a sequence container");
9494

9595
template <bool _Const>
96-
using __iterator = __key_value_iterator<flat_multimap, _KeyContainer, _MappedContainer, _Const>;
96+
using __iterator = _LIBCPP_NODEBUG __key_value_iterator<flat_multimap, _KeyContainer, _MappedContainer, _Const>;
9797

9898
public:
9999
// types
@@ -475,7 +475,7 @@ class flat_multimap {
475475
__key_iter = ranges::upper_bound(__containers_.keys.begin(), __key_iter, __pair.first, __compare_);
476476
__mapped_iter = __corresponding_mapped_it(*this, __key_iter);
477477
} else {
478-
_LIBCPP_ASSERT_INTERNAL(!__prev_bigger && __next_smaller, "this means that the multimap is not sorted");
478+
_LIBCPP_ASSERT_INTERNAL(!__prev_larger && __next_smaller, "this means that the multimap is not sorted");
479479

480480
// the hint position is more to the left than the key should have been.
481481
// we want to emplace the element to a position as left as possible

0 commit comments

Comments
 (0)