Add default case to shut compilers up

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-12-04 17:42:13 +02:00
parent 37f085ee36
commit e32204db0c

View File

@@ -435,6 +435,8 @@ constexpr auto is_valid(char c) -> bool {
case 'u':
case 'v':
return true;
default:
return false;
}
return false;
}