From 35555df976c2cd3b68a2cf1d8815ab218c3931b5 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 --- xo-tokenizer/include/xo/tokenizer/tokenizer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xo-tokenizer/include/xo/tokenizer/tokenizer.hpp b/xo-tokenizer/include/xo/tokenizer/tokenizer.hpp index ba340b1a..b9782b10 100644 --- a/xo-tokenizer/include/xo/tokenizer/tokenizer.hpp +++ b/xo-tokenizer/include/xo/tokenizer/tokenizer.hpp @@ -213,7 +213,7 @@ namespace xo { } /** fall through to numeric literal code below **/ - ; + [[fallthrough]]; case '.': case '0': case '1':