1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Adds an explicit [[fallthrough]] tag.

This commit is contained in:
Thomas Harte 2020-06-19 23:10:25 -04:00
parent 12ee8e4db4
commit 3cb1072c29

View File

@ -421,7 +421,8 @@ class Base {
*/ */
#define slot(n) \ #define slot(n) \
if(use_end && end == n) return;\ if(use_end && end == n) return; \
[[fallthrough]]; \
case n case n
#define external_slot(n) \ #define external_slot(n) \