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