From dc2d695ac75263d1b8eedb89340f4a296ff5ff7e Mon Sep 17 00:00:00 2001 From: klzgrad Date: Sat, 30 Nov 2019 22:37:57 +0800 Subject: [PATCH] base/debug: Fix uClibc macro condition --- src/base/debug/stack_trace.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/base/debug/stack_trace.h b/src/base/debug/stack_trace.h index b79a05ba56..7c3b1009eb 100644 --- a/src/base/debug/stack_trace.h +++ b/src/base/debug/stack_trace.h @@ -125,6 +125,10 @@ class BASE_EXPORT StackTrace { // prefix string prepended to each line. void OutputToStreamWithPrefix(std::ostream* os, cstring_view prefix_string) const; +#else + void OutputToStream(std::ostream* os) const; + void OutputToStreamWithPrefix(std::ostream* os, + cstring_view prefix_string) const; #endif // Resolves backtrace to symbols and returns as string. @@ -148,6 +152,9 @@ class BASE_EXPORT StackTrace { #if !defined(__UCLIBC__) && !defined(_AIX) void OutputToStreamWithPrefixImpl(std::ostream* os, cstring_view prefix_string) const; +#else + void OutputToStreamWithPrefixImpl(std::ostream* os, + cstring_view prefix_string) const {} #endif // Returns true if generation of symbolized stack traces is to be suppressed.