File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff 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) {}
You can’t perform that action at this time.
0 commit comments