Skip to content

Commit 6dd9f4e

Browse files
committed
Please consider the following formatting changes
1 parent 2540a8f commit 6dd9f4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Foundation/test/test_SignpostLogger.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ int main(int argc, char** argv)
6666
// Test actions associtated to a given debug stream.
6767
static bool testMustCall = false;
6868
static bool testMustNotCall = false;
69-
O2_SIGNPOST_ACTION(SignpostStacktrace, [](void *) { testMustCall = true; });
69+
O2_SIGNPOST_ACTION(SignpostStacktrace, [](void*) { testMustCall = true; });
7070
O2_LOG_DISABLE(SignpostStacktrace);
71-
O2_SIGNPOST_ACTION(SignpostStacktrace, [](void *) { testMustNotCall = true; });
71+
O2_SIGNPOST_ACTION(SignpostStacktrace, [](void*) { testMustNotCall = true; });
7272
return testMustCall && (!testMustNotCall) ? 0 : 1;
7373
}

0 commit comments

Comments
 (0)