From 3f84f3c3282d59fa3f0a812cc1dc30678548d41f Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sun, 11 May 2025 01:52:58 -0500 Subject: [PATCH] xo-tokenizer: tag explicit fallthrough in switch --- include/xo/tokenizer/tokenizer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xo/tokenizer/tokenizer.hpp b/include/xo/tokenizer/tokenizer.hpp index ba340b1a..b9782b10 100644 --- a/include/xo/tokenizer/tokenizer.hpp +++ b/include/xo/tokenizer/tokenizer.hpp @@ -213,7 +213,7 @@ namespace xo { } /** fall through to numeric literal code below **/ - ; + [[fallthrough]]; case '.': case '0': case '1':