This function needs to be conditional on ENABLE_TRACING also, otherwise the build breaks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25209 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2008-04-27 06:18:55 +00:00
parent 2be0b7cc43
commit fe2edb706d

View File

@ -248,6 +248,7 @@ TraceOutput::Print(const char* format,...)
va_end(args);
}
#if ENABLE_TRACING
void
TraceOutput::PrintStackTrace(tracing_stack_trace* stackTrace)
@ -272,6 +273,7 @@ TraceOutput::PrintStackTrace(tracing_stack_trace* stackTrace)
Print(" %p\n", (void*)address);
}
}
#endif // ENABLE_TRACING
void