File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,8 @@ public:
8787 __split_buffer& operator =(const __split_buffer&) = delete ;
8888
8989 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI __split_buffer ()
90- _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
91- : __data_()
92- {}
90+ _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
91+ : __data_() {}
9392
9493 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI explicit __split_buffer (__alloc_rr& __a)
9594 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
@@ -212,9 +211,9 @@ private:
212211 struct _ConstructTransaction {
213212 _LIBCPP_CONSTEXPR_SINCE_CXX20
214213 _LIBCPP_HIDE_FROM_ABI explicit _ConstructTransaction (__split_buffer* __parent, pointer __p, size_type __n) _NOEXCEPT
215- : __pos_(__p),
216- __end_(__p + __n),
217- __parent_(__parent) {}
214+ : __pos_(__p),
215+ __end_(__p + __n),
216+ __parent_(__parent) {}
218217
219218 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI ~_ConstructTransaction () {
220219 __parent_->__data_ .__update_sentinel (__pos_);
You can’t perform that action at this time.
0 commit comments