We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f9729c commit 544c340Copy full SHA for 544c340
src/from_exception.cpp
@@ -163,6 +163,7 @@ BOOST_SYMBOL_EXPORT void assert_no_pending_traces() noexcept {
163
164
#if !BOOST_STACKTRACE_ALWAYS_STORE_IN_PADDING
165
#include <cstdlib>
166
+#include <cstring>
167
#include <mutex>
168
#include <unordered_map>
169
@@ -302,7 +303,7 @@ void __cxa_decrement_exception_refcount(void *thrown_object) throw() {
302
303
"\n"
304
"=======================================================================================\n"
305
;
- write(STDERR_FILENO, warning, strlen(warning));
306
+ write(STDERR_FILENO, warning, std::strlen(warning));
307
std::abort();
308
}
309
#endif
0 commit comments