X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Futil.cpp;h=c178d90a99905b029748e691f0655d6fa83c2b3b;hb=15257dbac8c3be0e327fd0ad8e9e8442749df7f4;hp=44c377ca09f585f72d6caa4d2ff921bfb56a45d4;hpb=1dddf8c03e8b7781f549636be6d23e6ca245512b;p=staging%2Fwindowmanager.git diff --git a/src/util.cpp b/src/util.cpp index 44c377c..c178d90 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -26,7 +26,7 @@ #ifdef SCOPE_TRACING thread_local int ScopeTrace::indent = 0; -explicit ScopeTrace::ScopeTrace(char const *func) : f(func) { +ScopeTrace::ScopeTrace(char const *func) : f(func) { fprintf(stderr, "%lu %*s%s -->\n", pthread_self(), 2 * indent++, "", this->f); } ScopeTrace::~ScopeTrace() { fprintf(stderr, "%lu %*s%s <--\n", pthread_self(), 2 * --indent, "", this->f); }