We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2540a8f commit a972709Copy full SHA for a972709
Framework/Foundation/test/test_SignpostLogger.cxx
@@ -66,8 +66,8 @@ int main(int argc, char** argv)
66
// Test actions associtated to a given debug stream.
67
static bool testMustCall = false;
68
static bool testMustNotCall = false;
69
- O2_SIGNPOST_ACTION(SignpostStacktrace, [](void *) { testMustCall = true; });
+ O2_SIGNPOST_ACTION(SignpostStacktrace, [](void*) { testMustCall = true; });
70
O2_LOG_DISABLE(SignpostStacktrace);
71
- O2_SIGNPOST_ACTION(SignpostStacktrace, [](void *) { testMustNotCall = true; });
+ O2_SIGNPOST_ACTION(SignpostStacktrace, [](void*) { testMustNotCall = true; });
72
return testMustCall && (!testMustNotCall) ? 0 : 1;
73
}
0 commit comments