From b385772a84db2c28aaa2050d82f9b40fe7e3d350 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sat, 6 Feb 2021 17:17:28 -0600 Subject: [PATCH] fixup! Explicitly annotate intentional switch fallthrough --- config_cmake.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_cmake.h.in b/config_cmake.h.in index dceb16092..954fc92e1 100644 --- a/config_cmake.h.in +++ b/config_cmake.h.in @@ -200,7 +200,7 @@ #endif #if __has_attribute(fallthrough) -#define __fallthrough__ __attribute__ ((fallthrough)) +#define __fallthrough__ __attribute__ ((fallthrough)); #else #define __fallthrough__ #endif