From e32204db0cf87870d6fa85ed5623520c682c29ea Mon Sep 17 00:00:00 2001 From: Slendi Date: Thu, 4 Dec 2025 17:42:13 +0200 Subject: [PATCH] Add default case to shut compilers up Signed-off-by: Slendi --- include/smath.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/smath.hpp b/include/smath.hpp index 8376996..c7a928e 100644 --- a/include/smath.hpp +++ b/include/smath.hpp @@ -435,6 +435,8 @@ constexpr auto is_valid(char c) -> bool { case 'u': case 'v': return true; + default: + return false; } return false; }