fixup! Explicitly annotate intentional switch fallthrough

<manual git patch editing failure>
This commit is contained in:
Mahmoud Al-Qudsi 2021-02-06 17:17:28 -06:00
parent ea1a4b7932
commit b385772a84

View File

@ -200,7 +200,7 @@
#endif
#if __has_attribute(fallthrough)
#define __fallthrough__ __attribute__ ((fallthrough))
#define __fallthrough__ __attribute__ ((fallthrough));
#else
#define __fallthrough__
#endif