[libcxx-commits] [clang] [clang-tools-extra] [libcxx] [llvm] [libc++][hardening] Categorize assertions related to strict weak ordering (PR #77405)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jan 22 13:51:02 PST 2024
================
@@ -360,11 +365,13 @@ _LIBCPP_HARDENING_MODE_DEBUG
# define _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(expression, message) _LIBCPP_ASSERT(expression, message)
# define _LIBCPP_ASSERT_NON_NULL(expression, message) _LIBCPP_ASSERT(expression, message)
# define _LIBCPP_ASSERT_NON_OVERLAPPING_RANGES(expression, message) _LIBCPP_ASSERT(expression, message)
+# define _LIBCPP_ASSERT_ARGUMENT_WITHIN_DOMAIN(expression, message) _LIBCPP_ASSERT(expression, message)
----------------
ldionne wrote:
That's a leftover.
https://github.com/llvm/llvm-project/pull/77405
More information about the libcxx-commits
mailing list