Skip to content

Commit

Permalink
buildtools: Fix libc++ build
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Jul 27, 2024
1 parent 6475fe0 commit 3284a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildtools/third_party/libc++/__assertion_handler
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __libcpp_hardening_failure()
_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

Expand Down

0 comments on commit 3284a39

Please sign in to comment.