Skip to content

Commit 18ded9b

Browse files
committed
_C -> _CommonRef
1 parent 1c6e711 commit 18ded9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__concepts/comparison_common_type.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ _LIBCPP_BEGIN_NAMESPACE_STD
2222

2323
#if _LIBCPP_STD_VER >= 23
2424

25-
template <class _Tp, class _Up, class _C = common_reference_t<const _Tp&, const _Up&>>
25+
template <class _Tp, class _Up, class _CommonRef = common_reference_t<const _Tp&, const _Up&>>
2626
concept __comparison_common_type_with_impl =
2727
same_as<common_reference_t<const _Tp&, const _Up&>, common_reference_t<const _Up&, const _Tp&>> && requires {
28-
requires convertible_to<const _Tp&, const _C&> || convertible_to<_Tp, const _C&>;
29-
requires convertible_to<const _Up&, const _C&> || convertible_to<_Up, const _C&>;
28+
requires convertible_to<const _Tp&, const _CommonRef&> || convertible_to<_Tp, const _CommonRef&>;
29+
requires convertible_to<const _Up&, const _CommonRef&> || convertible_to<_Up, const _CommonRef&>;
3030
};
3131

3232
template <class _Tp, class _Up>

0 commit comments

Comments
 (0)