Skip to content

Commit

Permalink
[libc++][NFC] Update #ifdef comments.
Browse files Browse the repository at this point in the history
These review comments weren't addressed in D129056.
  • Loading branch information
mordante committed Jul 10, 2022
1 parent af2d11b commit d559857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libcxx/include/__type_traits/is_convertible.h
Expand Up @@ -29,7 +29,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
template <class _T1, class _T2> struct _LIBCPP_TEMPLATE_VIS is_convertible
: public integral_constant<bool, __is_convertible_to(_T1, _T2)> {};

#else // __has_builtin(__is_convertible_to)
#else // __has_builtin(__is_convertible_to) && !defined(_LIBCPP_USE_IS_CONVERTIBLE_FALLBACK)

namespace __is_convertible_imp
{
Expand Down Expand Up @@ -96,7 +96,7 @@ template <class _T1, class _T2> struct _LIBCPP_TEMPLATE_VIS is_convertible
static const size_t __complete_check2 = __is_convertible_check<_T2>::__v;
};

#endif // __has_builtin(__is_convertible_to)
#endif // __has_builtin(__is_convertible_to) && !defined(_LIBCPP_USE_IS_CONVERTIBLE_FALLBACK)

#if _LIBCPP_STD_VER > 14
template <class _From, class _To>
Expand Down

0 comments on commit d559857

Please sign in to comment.