Skip to content

Commit 348e741

Browse files
committed
[libc++][NFC] Run clang-format on libcxx/include
This re-formats a few headers that had become out-of-sync with respect to formatting since we ran clang-format on the whole codebase. There's surprisingly few instances of it.
1 parent 1faa9c8 commit 348e741

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+105
-113
lines changed

libcxx/include/__chrono/leap_second.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class leap_second {
122122

123123
} // namespace chrono
124124

125-
# endif //_LIBCPP_STD_VER >= 20
125+
# endif // _LIBCPP_STD_VER >= 20
126126

127127
_LIBCPP_END_NAMESPACE_STD
128128

libcxx/include/__chrono/parser_std_format_spec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ class _LIBCPP_TEMPLATE_VIS __parser_chrono {
409409

410410
} // namespace __format_spec
411411

412-
#endif //_LIBCPP_STD_VER >= 20
412+
#endif // _LIBCPP_STD_VER >= 20
413413

414414
_LIBCPP_END_NAMESPACE_STD
415415

libcxx/include/__chrono/statically_widen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr const _CharT* __statically_widen(const char* __s
4545
# define _LIBCPP_STATICALLY_WIDEN(_CharT, __str) ::std::__statically_widen<_CharT>(__str)
4646
# endif // _LIBCPP_HAS_NO_WIDE_CHARACTERS
4747

48-
#endif //_LIBCPP_STD_VER >= 20
48+
#endif // _LIBCPP_STD_VER >= 20
4949

5050
_LIBCPP_END_NAMESPACE_STD
5151

libcxx/include/__chrono/time_zone_link.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ operator<=>(const time_zone_link& __x, const time_zone_link& __y) noexcept {
6868

6969
} // namespace chrono
7070

71-
# endif //_LIBCPP_STD_VER >= 20
71+
# endif // _LIBCPP_STD_VER >= 20
7272

7373
_LIBCPP_END_NAMESPACE_STD
7474

libcxx/include/__expected/expected.h

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -503,25 +503,24 @@ class expected : private __expected_base<_Tp, _Err> {
503503

504504
private:
505505
template <class _Up, class _OtherErr, class _UfQual, class _OtherErrQual>
506-
using __can_convert =
507-
_And< is_constructible<_Tp, _UfQual>,
508-
is_constructible<_Err, _OtherErrQual>,
509-
_If<_Not<is_same<remove_cv_t<_Tp>, bool>>::value,
510-
_And<
511-
_Not<_And<is_same<_Tp, _Up>, is_same<_Err, _OtherErr>>>, // use the copy constructor instead, see #92676
512-
_Not<is_constructible<_Tp, expected<_Up, _OtherErr>&>>,
513-
_Not<is_constructible<_Tp, expected<_Up, _OtherErr>>>,
514-
_Not<is_constructible<_Tp, const expected<_Up, _OtherErr>&>>,
515-
_Not<is_constructible<_Tp, const expected<_Up, _OtherErr>>>,
516-
_Not<is_convertible<expected<_Up, _OtherErr>&, _Tp>>,
517-
_Not<is_convertible<expected<_Up, _OtherErr>&&, _Tp>>,
518-
_Not<is_convertible<const expected<_Up, _OtherErr>&, _Tp>>,
519-
_Not<is_convertible<const expected<_Up, _OtherErr>&&, _Tp>>>,
520-
true_type>,
521-
_Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>&>>,
522-
_Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>>>,
523-
_Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>&>>,
524-
_Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>>> >;
506+
using __can_convert = _And<
507+
is_constructible<_Tp, _UfQual>,
508+
is_constructible<_Err, _OtherErrQual>,
509+
_If<_Not<is_same<remove_cv_t<_Tp>, bool>>::value,
510+
_And< _Not<_And<is_same<_Tp, _Up>, is_same<_Err, _OtherErr>>>, // use the copy constructor instead, see #92676
511+
_Not<is_constructible<_Tp, expected<_Up, _OtherErr>&>>,
512+
_Not<is_constructible<_Tp, expected<_Up, _OtherErr>>>,
513+
_Not<is_constructible<_Tp, const expected<_Up, _OtherErr>&>>,
514+
_Not<is_constructible<_Tp, const expected<_Up, _OtherErr>>>,
515+
_Not<is_convertible<expected<_Up, _OtherErr>&, _Tp>>,
516+
_Not<is_convertible<expected<_Up, _OtherErr>&&, _Tp>>,
517+
_Not<is_convertible<const expected<_Up, _OtherErr>&, _Tp>>,
518+
_Not<is_convertible<const expected<_Up, _OtherErr>&&, _Tp>>>,
519+
true_type>,
520+
_Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>&>>,
521+
_Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>>>,
522+
_Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>&>>,
523+
_Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>>> >;
525524

526525
template <class _Func, class... _Args>
527526
_LIBCPP_HIDE_FROM_ABI constexpr explicit expected(

libcxx/include/__format/buffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ class _LIBCPP_TEMPLATE_VIS __retarget_buffer {
646646

647647
} // namespace __format
648648

649-
#endif //_LIBCPP_STD_VER >= 20
649+
#endif // _LIBCPP_STD_VER >= 20
650650

651651
_LIBCPP_END_NAMESPACE_STD
652652

libcxx/include/__format/concepts.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ template <class _Tp>
7575
concept __fmt_pair_like =
7676
__is_specialization_v<_Tp, pair> || (__is_specialization_v<_Tp, tuple> && tuple_size_v<_Tp> == 2);
7777

78-
# endif //_LIBCPP_STD_VER >= 23
79-
#endif //_LIBCPP_STD_VER >= 20
78+
# endif // _LIBCPP_STD_VER >= 23
79+
#endif // _LIBCPP_STD_VER >= 20
8080

8181
_LIBCPP_END_NAMESPACE_STD
8282

libcxx/include/__format/container_adaptor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ template <class _CharT, class _Tp, formattable<_CharT> _Container>
6666
struct _LIBCPP_TEMPLATE_VIS formatter<stack<_Tp, _Container>, _CharT>
6767
: public __formatter_container_adaptor<stack<_Tp, _Container>, _CharT> {};
6868

69-
#endif //_LIBCPP_STD_VER >= 23
69+
#endif // _LIBCPP_STD_VER >= 23
7070

7171
_LIBCPP_END_NAMESPACE_STD
7272

libcxx/include/__format/enable_insertable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ inline constexpr bool __enable_insertable = false;
2828

2929
} // namespace __format
3030

31-
#endif //_LIBCPP_STD_VER >= 20
31+
#endif // _LIBCPP_STD_VER >= 20
3232

3333
_LIBCPP_END_NAMESPACE_STD
3434

libcxx/include/__format/escaped_output_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[711] = {
856856
// clang-format on
857857
} // namespace __escaped_output_table
858858

859-
#endif //_LIBCPP_STD_VER >= 23
859+
#endif // _LIBCPP_STD_VER >= 23
860860

861861
_LIBCPP_END_NAMESPACE_STD
862862

libcxx/include/__format/extended_grapheme_cluster_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[1496] = {
16561656

16571657
} // namespace __extended_grapheme_custer_property_boundary
16581658

1659-
#endif //_LIBCPP_STD_VER >= 20
1659+
#endif // _LIBCPP_STD_VER >= 20
16601660

16611661
_LIBCPP_END_NAMESPACE_STD
16621662

libcxx/include/__format/format_arg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ _LIBCPP_DEPRECATED_IN_CXX26
392392
}
393393
}
394394

395-
#endif //_LIBCPP_STD_VER >= 20
395+
#endif // _LIBCPP_STD_VER >= 20
396396

397397
_LIBCPP_END_NAMESPACE_STD
398398

libcxx/include/__format/format_arg_store.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ struct _LIBCPP_TEMPLATE_VIS __format_arg_store {
259259
_Storage __storage;
260260
};
261261

262-
#endif //_LIBCPP_STD_VER >= 20
262+
#endif // _LIBCPP_STD_VER >= 20
263263

264264
_LIBCPP_END_NAMESPACE_STD
265265

libcxx/include/__format/format_args.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class _LIBCPP_TEMPLATE_VIS basic_format_args {
7171
template <class _Context, class... _Args>
7272
basic_format_args(__format_arg_store<_Context, _Args...>) -> basic_format_args<_Context>;
7373

74-
#endif //_LIBCPP_STD_VER >= 20
74+
#endif // _LIBCPP_STD_VER >= 20
7575

7676
_LIBCPP_END_NAMESPACE_STD
7777

libcxx/include/__format/format_context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class _LIBCPP_TEMPLATE_VIS basic_format_context<typename __format::__retarget_bu
212212
};
213213

214214
_LIBCPP_CTAD_SUPPORTED_FOR_TYPE(basic_format_context);
215-
#endif //_LIBCPP_STD_VER >= 20
215+
#endif // _LIBCPP_STD_VER >= 20
216216

217217
_LIBCPP_END_NAMESPACE_STD
218218

libcxx/include/__format/format_error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_format_error(const ch
4343
# endif
4444
}
4545

46-
#endif //_LIBCPP_STD_VER >= 20
46+
#endif // _LIBCPP_STD_VER >= 20
4747

4848
_LIBCPP_END_NAMESPACE_STD
4949

libcxx/include/__format/format_functions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ _LIBCPP_HIDE_FROM_ABI inline __runtime_format_string<wchar_t> runtime_format(wst
360360
return __fmt;
361361
}
362362
# endif
363-
# endif //_LIBCPP_STD_VER >= 26
363+
# endif // _LIBCPP_STD_VER >= 26
364364

365365
template <class _CharT, class... _Args>
366366
struct _LIBCPP_TEMPLATE_VIS basic_format_string {
@@ -671,7 +671,7 @@ formatted_size(locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args)
671671

672672
# endif // _LIBCPP_HAS_NO_LOCALIZATION
673673

674-
#endif //_LIBCPP_STD_VER >= 20
674+
#endif // _LIBCPP_STD_VER >= 20
675675

676676
_LIBCPP_END_NAMESPACE_STD
677677

libcxx/include/__format/format_parse_context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ using format_parse_context = basic_format_parse_context<char>;
9898
using wformat_parse_context = basic_format_parse_context<wchar_t>;
9999
# endif
100100

101-
#endif //_LIBCPP_STD_VER >= 20
101+
#endif // _LIBCPP_STD_VER >= 20
102102

103103
_LIBCPP_END_NAMESPACE_STD
104104

libcxx/include/__format/format_string.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ __parse_arg_id(_Iterator __begin, _Iterator __end, auto& __parse_ctx) {
153153

154154
} // namespace __format
155155

156-
#endif //_LIBCPP_STD_VER >= 20
156+
#endif // _LIBCPP_STD_VER >= 20
157157

158158
_LIBCPP_END_NAMESPACE_STD
159159

libcxx/include/__format/format_to_n_result.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct _LIBCPP_TEMPLATE_VIS format_to_n_result {
2828
};
2929
_LIBCPP_CTAD_SUPPORTED_FOR_TYPE(format_to_n_result);
3030

31-
#endif //_LIBCPP_STD_VER >= 20
31+
#endif // _LIBCPP_STD_VER >= 20
3232

3333
_LIBCPP_END_NAMESPACE_STD
3434

libcxx/include/__format/formatter_bool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ struct _LIBCPP_TEMPLATE_VIS formatter<bool, _CharT> {
7272
# if _LIBCPP_STD_VER >= 23
7373
template <>
7474
inline constexpr bool enable_nonlocking_formatter_optimization<bool> = true;
75-
# endif //_LIBCPP_STD_VER >= 23
76-
#endif //_LIBCPP_STD_VER >= 20
75+
# endif // _LIBCPP_STD_VER >= 23
76+
#endif // _LIBCPP_STD_VER >= 20
7777

7878
_LIBCPP_END_NAMESPACE_STD
7979

libcxx/include/__format/formatter_char.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ inline constexpr bool enable_nonlocking_formatter_optimization<char> = true;
9292
template <>
9393
inline constexpr bool enable_nonlocking_formatter_optimization<wchar_t> = true;
9494
# endif // _LIBCPP_HAS_NO_WIDE_CHARACTERS
95-
# endif //_LIBCPP_STD_VER >= 23
95+
# endif // _LIBCPP_STD_VER >= 23
9696

97-
#endif //_LIBCPP_STD_VER >= 20
97+
#endif // _LIBCPP_STD_VER >= 20
9898

9999
_LIBCPP_END_NAMESPACE_STD
100100

libcxx/include/__format/formatter_floating_point.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -781,8 +781,8 @@ template <>
781781
inline constexpr bool enable_nonlocking_formatter_optimization<double> = true;
782782
template <>
783783
inline constexpr bool enable_nonlocking_formatter_optimization<long double> = true;
784-
# endif //_LIBCPP_STD_VER >= 23
785-
#endif //_LIBCPP_STD_VER >= 20
784+
# endif // _LIBCPP_STD_VER >= 23
785+
#endif // _LIBCPP_STD_VER >= 20
786786

787787
_LIBCPP_END_NAMESPACE_STD
788788

libcxx/include/__format/formatter_integer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ inline constexpr bool enable_nonlocking_formatter_optimization<unsigned long lon
118118
template <>
119119
inline constexpr bool enable_nonlocking_formatter_optimization<__uint128_t> = true;
120120
# endif
121-
# endif //_LIBCPP_STD_VER >= 23
122-
#endif //_LIBCPP_STD_VER >= 20
121+
# endif // _LIBCPP_STD_VER >= 23
122+
#endif // _LIBCPP_STD_VER >= 20
123123

124124
_LIBCPP_END_NAMESPACE_STD
125125

libcxx/include/__format/formatter_integral.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ __format_bool(bool __value, _FormatContext& __ctx, __format_spec::__parsed_speci
436436

437437
} // namespace __formatter
438438

439-
#endif //_LIBCPP_STD_VER >= 20
439+
#endif // _LIBCPP_STD_VER >= 20
440440

441441
_LIBCPP_END_NAMESPACE_STD
442442

libcxx/include/__format/formatter_output.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ _LIBCPP_HIDE_FROM_ABI int __truncate(basic_string_view<_CharT>& __str, int __pre
326326

327327
} // namespace __formatter
328328

329-
#endif //_LIBCPP_STD_VER >= 20
329+
#endif // _LIBCPP_STD_VER >= 20
330330

331331
_LIBCPP_END_NAMESPACE_STD
332332

libcxx/include/__format/formatter_pointer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ template <>
7272
inline constexpr bool enable_nonlocking_formatter_optimization<void*> = true;
7373
template <>
7474
inline constexpr bool enable_nonlocking_formatter_optimization<const void*> = true;
75-
# endif //_LIBCPP_STD_VER >= 23
76-
#endif //_LIBCPP_STD_VER >= 20
75+
# endif // _LIBCPP_STD_VER >= 23
76+
#endif // _LIBCPP_STD_VER >= 20
7777

7878
_LIBCPP_END_NAMESPACE_STD
7979

libcxx/include/__format/formatter_string.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ inline constexpr bool enable_nonlocking_formatter_optimization<basic_string<wcha
167167
template <class _Traits>
168168
inline constexpr bool enable_nonlocking_formatter_optimization<basic_string_view<wchar_t, _Traits>> = true;
169169
# endif // _LIBCPP_HAS_NO_WIDE_CHARACTERS
170-
# endif //_LIBCPP_STD_VER >= 23
171-
#endif //_LIBCPP_STD_VER >= 20
170+
# endif // _LIBCPP_STD_VER >= 23
171+
#endif // _LIBCPP_STD_VER >= 20
172172

173173
_LIBCPP_END_NAMESPACE_STD
174174

libcxx/include/__format/formatter_tuple.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ template <__fmt_char_type _CharT, formattable<_CharT>... _Args>
143143
struct _LIBCPP_TEMPLATE_VIS formatter<tuple<_Args...>, _CharT>
144144
: public __formatter_tuple<_CharT, tuple<_Args...>, _Args...> {};
145145

146-
#endif //_LIBCPP_STD_VER >= 23
146+
#endif // _LIBCPP_STD_VER >= 23
147147

148148
_LIBCPP_END_NAMESPACE_STD
149149

libcxx/include/__format/indic_conjunct_break_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[201] = {
343343

344344
} // namespace __indic_conjunct_break
345345

346-
#endif //_LIBCPP_STD_VER >= 20
346+
#endif // _LIBCPP_STD_VER >= 20
347347

348348
_LIBCPP_END_NAMESPACE_STD
349349

libcxx/include/__format/parser_std_format_spec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ __estimate_column_width(basic_string_view<_CharT> __str, size_t __maximum, __col
11631163

11641164
} // namespace __format_spec
11651165

1166-
#endif //_LIBCPP_STD_VER >= 20
1166+
#endif // _LIBCPP_STD_VER >= 20
11671167

11681168
_LIBCPP_END_NAMESPACE_STD
11691169

libcxx/include/__format/range_default_formatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ template <ranges::input_range _Rp, class _CharT>
207207
requires(format_kind<_Rp> != range_format::disabled && formattable<ranges::range_reference_t<_Rp>, _CharT>)
208208
struct _LIBCPP_TEMPLATE_VIS formatter<_Rp, _CharT> : __range_default_formatter<format_kind<_Rp>, _Rp, _CharT> {};
209209

210-
#endif //_LIBCPP_STD_VER >= 23
210+
#endif // _LIBCPP_STD_VER >= 23
211211

212212
_LIBCPP_END_NAMESPACE_STD
213213

libcxx/include/__format/range_formatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ struct _LIBCPP_TEMPLATE_VIS range_formatter {
257257
basic_string_view<_CharT> __closing_bracket_ = _LIBCPP_STATICALLY_WIDEN(_CharT, "]");
258258
};
259259

260-
#endif //_LIBCPP_STD_VER >= 23
260+
#endif // _LIBCPP_STD_VER >= 23
261261

262262
_LIBCPP_END_NAMESPACE_STD
263263

libcxx/include/__format/unicode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ class __code_point_view {
595595

596596
} // namespace __unicode
597597

598-
#endif //_LIBCPP_STD_VER >= 20
598+
#endif // _LIBCPP_STD_VER >= 20
599599

600600
_LIBCPP_END_NAMESPACE_STD
601601

libcxx/include/__format/width_estimation_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ inline constexpr uint32_t __table_upper_bound = 0x0003fffd;
263263

264264
} // namespace __width_estimation_table
265265

266-
#endif //_LIBCPP_STD_VER >= 20
266+
#endif // _LIBCPP_STD_VER >= 20
267267

268268
_LIBCPP_END_NAMESPACE_STD
269269

libcxx/include/__fwd/format.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class _LIBCPP_TEMPLATE_VIS basic_format_context;
3131
template <class _Tp, class _CharT = char>
3232
struct _LIBCPP_TEMPLATE_VIS formatter;
3333

34-
#endif //_LIBCPP_STD_VER >= 20
34+
#endif // _LIBCPP_STD_VER >= 20
3535

3636
_LIBCPP_END_NAMESPACE_STD
3737

libcxx/include/__memory/allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class _LIBCPP_TEMPLATE_VIS allocator<void> {
4747
typedef allocator<_Up> other;
4848
};
4949
};
50-
#endif // _LIBCPP_STD_VER <= 17
50+
#endif // _LIBCPP_STD_VER <= 17
5151

5252
// This class provides a non-trivial default constructor to the class that derives from it
5353
// if the condition is satisfied.

0 commit comments

Comments
 (0)