From 3cb1072c29ba767e4e6eeec7ea11c10550b41b90 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 19 Jun 2020 23:10:25 -0400 Subject: [PATCH] Adds an explicit [[fallthrough]] tag. --- Components/9918/Implementation/9918Base.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Components/9918/Implementation/9918Base.hpp b/Components/9918/Implementation/9918Base.hpp index 5003527ae..9ecea6943 100644 --- a/Components/9918/Implementation/9918Base.hpp +++ b/Components/9918/Implementation/9918Base.hpp @@ -421,7 +421,8 @@ class Base { */ #define slot(n) \ - if(use_end && end == n) return;\ + if(use_end && end == n) return; \ + [[fallthrough]]; \ case n #define external_slot(n) \