Skip to content

Commit fe542c0

Browse files
committed
[libc++] Fix build errors
Signed-off-by: yronglin <[email protected]>
1 parent 860ad25 commit fe542c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__type_traits/is_core_convertible.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ struct __is_core_convertible<_Tp, _Up, decltype(static_cast<void (*)(_Up)>(0)(st
3333
#if _LIBCPP_STD_VER >= 20
3434

3535
template <class _Tp, class _Up>
36-
concept __core_convertible_to = __is_core_convertible_v<_Tp, _Up>;
36+
concept __core_convertible_to = __is_core_convertible<_Tp, _Up>::value;
3737

3838
#endif // _LIBCPP_STD_VER >= 20
3939

0 commit comments

Comments
 (0)