From 561246e90282a72b5b0c437cbbdae171526aad8f Mon Sep 17 00:00:00 2001 From: Nikolas Klauser Date: Thu, 18 Jul 2024 12:21:31 +0200 Subject: [PATCH] [libc++][NFC] Remove wrong #endif comment --- libcxx/include/__type_traits/remove_cv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/__type_traits/remove_cv.h b/libcxx/include/__type_traits/remove_cv.h index 2c4e9e419a1bec..50e9f3e8aa78d6 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 using __remove_cv_t = __remove_cv(_Tp); -#endif // __has_builtin(__remove_cv) +#endif #if _LIBCPP_STD_VER >= 14 template