File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 9
9
// new_handler.
10
10
// ===----------------------------------------------------------------------===//
11
11
12
+ #include < cstdlib> // std::abort
12
13
#include < exception>
13
14
#include < new>
14
15
#include " abort_message.h"
@@ -94,7 +95,7 @@ static void demangling_unexpected_handler()
94
95
static constexpr std::terminate_handler default_terminate_handler = demangling_terminate_handler;
95
96
static constexpr std::terminate_handler default_unexpected_handler = demangling_unexpected_handler;
96
97
#else // !LIBCXXABI_SILENT_TERMINATE
97
- static constexpr std::terminate_handler default_terminate_handler = ::abort;
98
+ static constexpr std::terminate_handler default_terminate_handler = std ::abort;
98
99
static constexpr std::terminate_handler default_unexpected_handler = std::terminate;
99
100
#endif // !LIBCXXABI_SILENT_TERMINATE
100
101
You can’t perform that action at this time.
0 commit comments