Properly namespace the null backtrace output op

This commit is contained in:
Danny Robson 2012-05-15 16:03:14 +10:00
parent faa44b24ef
commit ee6fb59e99

View File

@ -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;
}