Skip to content

Commit 7593f68

Browse files
committed
[libc++][nfc] Remove double spaces.
Based on the comment of @Quuxplusone in D111961. It seems no tests are affected, but give it a run on the CI to be sure. Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D112231
1 parent 09dc8ab commit 7593f68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/vector

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ private:
903903

904904
struct _ConstructTransaction {
905905
explicit _ConstructTransaction(vector &__v, size_type __n)
906-
: __v_(__v), __pos_(__v.__end_), __new_end_(__v.__end_ + __n) {
906+
: __v_(__v), __pos_(__v.__end_), __new_end_(__v.__end_ + __n) {
907907
#ifndef _LIBCPP_HAS_NO_ASAN
908908
__v_.__annotate_increase(__n);
909909
#endif
@@ -1736,10 +1736,10 @@ vector<_Tp, _Allocator>::erase(const_iterator __first, const_iterator __last)
17361736
{
17371737
#if _LIBCPP_DEBUG_LEVEL == 2
17381738
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(_VSTD::addressof(__first)) == this,
1739-
"vector::erase(iterator, iterator) called with an iterator not"
1739+
"vector::erase(iterator, iterator) called with an iterator not"
17401740
" referring to this vector");
17411741
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(_VSTD::addressof(__last)) == this,
1742-
"vector::erase(iterator, iterator) called with an iterator not"
1742+
"vector::erase(iterator, iterator) called with an iterator not"
17431743
" referring to this vector");
17441744
#endif
17451745
_LIBCPP_ASSERT(__first <= __last, "vector::erase(first, last) called with invalid range");

0 commit comments

Comments
 (0)