diff options
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/stack_trace_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/debug/stack_trace_posix.cc b/base/debug/stack_trace_posix.cc index 5b31286..8a8ae47 100644 --- a/base/debug/stack_trace_posix.cc +++ b/base/debug/stack_trace_posix.cc @@ -374,7 +374,7 @@ class PrintBacktraceOutputHandler : public BacktraceOutputHandler { public: PrintBacktraceOutputHandler() {} - virtual void HandleOutput(const char* output) { + virtual void HandleOutput(const char* output) OVERRIDE { // NOTE: This code MUST be async-signal safe (it's used by in-process // stack dumping signal handler). NO malloc or stdio is allowed here. PrintToStderr(output); @@ -389,7 +389,7 @@ class StreamBacktraceOutputHandler : public BacktraceOutputHandler { explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) { } - virtual void HandleOutput(const char* output) { + virtual void HandleOutput(const char* output) OVERRIDE { (*os_) << output; } |