[libcxx-commits] [libcxx] 561246e - [libc++][NFC] Remove wrong #endif comment
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 18 06:18:46 PDT 2024
Author: Nikolas Klauser
Date: 2024-07-18T15:18:30+02:00
New Revision: 561246e90282a72b5b0c437cbbdae171526aad8f
URL: https://github.com/llvm/llvm-project/commit/561246e90282a72b5b0c437cbbdae171526aad8f
DIFF: https://github.com/llvm/llvm-project/commit/561246e90282a72b5b0c437cbbdae171526aad8f.diff
LOG: [libc++][NFC] Remove wrong #endif comment
Added:
Modified:
libcxx/include/__type_traits/remove_cv.h
Removed:
################################################################################
diff --git a/libcxx/include/__type_traits/remove_cv.h b/libcxx/include/__type_traits/remove_cv.h
index 2c4e9e419a1be..50e9f3e8aa78d 100644
--- a/libcxx/include/__type_traits/remove_cv.h
+++ b/libcxx/include/__type_traits/remove_cv.h
@@ -28,7 +28,7 @@ using __remove_cv_t = typename remove_cv<_Tp>::type;
#else
template <class _Tp>
using __remove_cv_t = __remove_cv(_Tp);
-#endif // __has_builtin(__remove_cv)
+#endif
#if _LIBCPP_STD_VER >= 14
template <class _Tp>
More information about the libcxx-commits
mailing list