git: 2f6d6eaf2d51 - main - libcxx-compat: revert llvmorg-19-init-18063-g561246e90282:

From: Dimitry Andric <dim_at_FreeBSD.org>
Date: Wed, 23 Oct 2024 18:30:34 UTC
The branch main has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=2f6d6eaf2d511b212eab8ed002f3152c96deca3c

commit 2f6d6eaf2d511b212eab8ed002f3152c96deca3c
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-08-05 20:13:12 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-10-23 18:26:39 +0000

    libcxx-compat: revert llvmorg-19-init-18063-g561246e90282:
    
      [libc++][NFC] Remove wrong #endif comment
    
    PR:             280562
    MFC after:      1 month
---
 contrib/llvm-project/libcxx/include/__type_traits/remove_cv.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/llvm-project/libcxx/include/__type_traits/remove_cv.h b/contrib/llvm-project/libcxx/include/__type_traits/remove_cv.h
index 50e9f3e8aa78..2c4e9e419a1b 100644
--- a/contrib/llvm-project/libcxx/include/__type_traits/remove_cv.h
+++ b/contrib/llvm-project/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
+#endif // __has_builtin(__remove_cv)
 
 #if _LIBCPP_STD_VER >= 14
 template <class _Tp>