From ee6fb59e99fba7c53c4c10743f11ed5b1c034464 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 15 May 2012 16:03:14 +1000 Subject: [PATCH] Properly namespace the null backtrace output op --- backtrace_null.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backtrace_null.cpp b/backtrace_null.cpp index 8b18330d..5d767092 100644 --- a/backtrace_null.cpp +++ b/backtrace_null.cpp @@ -11,7 +11,9 @@ debug::backtrace::backtrace (void): ostream& -operator <<(ostream &os, const debug::backtrace &rhs) { +debug::operator <<(ostream &os, const debug::backtrace &rhs) { os << "null backtrace"; return os; } + +