Skip to content

Commit 1cf60d9

Browse files
committed
Fix format
1 parent 73c980d commit 1cf60d9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

libcxx/include/__split_buffer

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,12 @@ public:
7373
// Can't be defaulted due to _LIBCPP_COMPRESSED_PAIR not being an aggregate in C++03 and C++11.
7474
_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI __split_buffer_pointer_layout()
7575
#if _LIBCPP_STD_VER >= 20
76-
// Prevents Swift compiler's C++ importer from implicitly instantiating this ctor when it's not supported.
77-
requires (!is_reference_v<allocator_type>)
76+
// Prevents Swift compiler's C++ importer from implicitly instantiating this ctor when it's not supported.
77+
requires (!is_reference_v<allocator_type>)
7878
#endif
79-
: __back_cap_(nullptr) {}
80-
79+
: __back_cap_(nullptr) {
80+
}
81+
8182
_LIBCPP_CONSTEXPR_SINCE_CXX20
8283
_LIBCPP_HIDE_FROM_ABI explicit __split_buffer_pointer_layout(const allocator_type& __alloc)
8384
: __back_cap_(nullptr), __alloc_(__alloc) {}

0 commit comments

Comments
 (0)