From cf32f954c2abd83adf8ca58e30221df9acf990cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Bonnet?= Date: Tue, 3 Aug 2021 18:00:02 +0200 Subject: [PATCH] Fix minor clang warning -Wswitch --- include/picotest.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/picotest.h b/include/picotest.h index c88fc72..bc6719b 100644 --- a/include/picotest.h +++ b/include/picotest.h @@ -542,6 +542,7 @@ static void _picoTest_logFailure(const char *file, int line, const char *type, case PICOTEST_FILTER_PASS_PROPAGATE: \ fail += _testName##_testCaseRunner(); \ break; \ + default:; \ } \ return fail; \ }