Skip to content

Commit 275da6f

Browse files
committed
re-runs clang format on 88bc350
1 parent ad93746 commit 275da6f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

libcxx/include/__split_buffer

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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_);

0 commit comments

Comments
 (0)