X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Futil.cpp;fp=src%2Futil.cpp;h=c178d90a99905b029748e691f0655d6fa83c2b3b;hb=7a14533d1a270bb7a57be16dce31235604d71e0b;hp=44c377ca09f585f72d6caa4d2ff921bfb56a45d4;hpb=87b9b2d7af194b3339ac4c383301c5ed6c383809;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); }