libc++: Fix assertion handler

136.0.7103.44
klzgrad 2024-07-27 09:39:29 +08:00
parent 02234e1a67
commit 40c3a73d55
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
_LIBCPP_END_NAMESPACE_STD
// TODO(hardening): use `__builtin_verbose_trap(message)` once that becomes available.
# define _LIBCPP_ASSERTION_HANDLER(message) ((void)message, __libcpp_hardening_failure())
# define _LIBCPP_ASSERTION_HANDLER(message) ((void)message, std::__libcpp_hardening_failure())
#else