From d55985789b38dde354235d6899b2f117a3cfe344 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sun, 10 Jul 2022 14:08:35 +0200 Subject: [PATCH] [libc++][NFC] Update #ifdef comments. These review comments weren't addressed in D129056. --- libcxx/include/__type_traits/is_convertible.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/include/__type_traits/is_convertible.h b/libcxx/include/__type_traits/is_convertible.h index b45b41caccdd8..7e49cd4e6a31b 100644 --- a/libcxx/include/__type_traits/is_convertible.h +++ b/libcxx/include/__type_traits/is_convertible.h @@ -29,7 +29,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD template struct _LIBCPP_TEMPLATE_VIS is_convertible : public integral_constant {}; -#else // __has_builtin(__is_convertible_to) +#else // __has_builtin(__is_convertible_to) && !defined(_LIBCPP_USE_IS_CONVERTIBLE_FALLBACK) namespace __is_convertible_imp { @@ -96,7 +96,7 @@ template 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