diff --git a/src/base/debug/stack_trace_posix.cc b/src/base/debug/stack_trace_posix.cc index f7f019bcdc..eedb30510a 100644 --- a/src/base/debug/stack_trace_posix.cc +++ b/src/base/debug/stack_trace_posix.cc @@ -1089,6 +1089,10 @@ void StackTrace::OutputToStreamWithPrefixImpl( StreamBacktraceOutputHandler handler(os); ProcessBacktrace(addresses(), prefix_string, &handler); } +#else +void StackTrace::OutputToStreamWithPrefixImpl( + std::ostream*, cstring_view) const { +} #endif namespace internal {