Skip to content

Commit 5ad9e70

Browse files
committed
Try to fix CI
1 parent 6d25537 commit 5ad9e70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libcxx/include/__type_traits/reference_constructs_from_temporary.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
2121
template <class _Tp, class _Up>
2222
const bool __reference_constructs_from_temporary_v = __reference_constructs_from_temporary(_Tp, _Up);
2323

24-
# if _LIBCPP_STD_VER >= 23
24+
#if _LIBCPP_STD_VER >= 23
2525

2626
template <class _Tp, class _Up>
2727
struct _LIBCPP_TEMPLATE_VIS _LIBCPP_NO_SPECIALIZATIONS reference_constructs_from_temporary
@@ -31,7 +31,7 @@ template <class _Tp, class _Up>
3131
_LIBCPP_NO_SPECIALIZATIONS inline constexpr bool reference_constructs_from_temporary_v =
3232
__reference_constructs_from_temporary_v<_Tp, _Up>;
3333

34-
# endif
34+
#endif
3535

3636
_LIBCPP_END_NAMESPACE_STD
3737

libcxx/include/__type_traits/reference_converts_from_temporary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
2323
(__clang_patchlevel__ >= 2))
2424

2525
template <class _Tp, class _Up>
26-
inline constexpr bool __reference_converts_from_temporary_v = __reference_converts_from_temporary(_Tp, _Up);
26+
const bool __reference_converts_from_temporary_v = __reference_converts_from_temporary(_Tp, _Up);
2727

2828
# if _LIBCPP_STD_VER >= 23
2929

0 commit comments

Comments
 (0)