Skip to content

Commit 6a6a64d

Browse files
committed
handles CI feedback
1 parent 076415a commit 6a6a64d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/include/__vector/vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
8787
template <class _Tp, class _Allocator /* = allocator<_Tp> */>
8888
class vector {
8989
template <class _Up, class _Alloc>
90-
using __split_buffer = std::__split_buffer<_Up, _Alloc, __split_buffer_pointer_layout>;
90+
using __split_buffer _LIBCPP_NODEBUG = std::__split_buffer<_Up, _Alloc, __split_buffer_pointer_layout>;
9191

9292
public:
9393
//

libcxx/include/deque

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ const _DiffType __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer,
488488
template <class _Tp, class _Allocator /*= allocator<_Tp>*/>
489489
class deque {
490490
template <class _Up, class _Alloc>
491-
using __split_buffer = std::__split_buffer<_Up, _Alloc, __split_buffer_pointer_layout>;
491+
using __split_buffer _LIBCPP_NODEBUG = std::__split_buffer<_Up, _Alloc, __split_buffer_pointer_layout>;
492492

493493
public:
494494
// types:

0 commit comments

Comments
 (0)