[libcxx-commits] [libcxx] 03a9f07 - [libc++][NFC] Fix leftover && in comment

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jan 24 06:41:18 PST 2024


Author: Louis Dionne
Date: 2024-01-24T09:41:02-05:00
New Revision: 03a9f07e189db792b001c4001981d6e2da880221

URL: https://github.com/llvm/llvm-project/commit/03a9f07e189db792b001c4001981d6e2da880221
DIFF: https://github.com/llvm/llvm-project/commit/03a9f07e189db792b001c4001981d6e2da880221.diff

LOG: [libc++][NFC] Fix leftover && in comment

Added: 
    

Modified: 
    libcxx/include/__algorithm/ranges_max.h
    libcxx/include/__algorithm/ranges_min.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__algorithm/ranges_max.h b/libcxx/include/__algorithm/ranges_max.h
index 0f89cb2ff5bf22..c63656de513498 100644
--- a/libcxx/include/__algorithm/ranges_max.h
+++ b/libcxx/include/__algorithm/ranges_max.h
@@ -98,6 +98,6 @@ _LIBCPP_END_NAMESPACE_STD
 
 _LIBCPP_POP_MACROS
 
-#endif // _LIBCPP_STD_VER >= 20 &&
+#endif // _LIBCPP_STD_VER >= 20
 
 #endif // _LIBCPP___ALGORITHM_RANGES_MAX_H

diff  --git a/libcxx/include/__algorithm/ranges_min.h b/libcxx/include/__algorithm/ranges_min.h
index 8757358cdf37d9..e8f97f2754acab 100644
--- a/libcxx/include/__algorithm/ranges_min.h
+++ b/libcxx/include/__algorithm/ranges_min.h
@@ -90,6 +90,6 @@ _LIBCPP_END_NAMESPACE_STD
 
 _LIBCPP_POP_MACROS
 
-#endif // _LIBCPP_STD_VER >= 20 &&
+#endif // _LIBCPP_STD_VER >= 20
 
 #endif // _LIBCPP___ALGORITHM_RANGES_MIN_H


        


More information about the libcxx-commits mailing list