From 47f30703ee6935de393303b7a4d6bab8ce7780f4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 24 Jun 2024 15:01:11 -0400 Subject: Replace questionable switch statements with shorter conditionals --- src/uri_utils.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/uri_utils.h') diff --git a/src/uri_utils.h b/src/uri_utils.h index e2f30edb..0d3bd74e 100644 --- a/src/uri_utils.h +++ b/src/uri_utils.h @@ -101,15 +101,8 @@ uri_is_under(const SerdURI* uri, const SerdURI* root) static inline bool is_uri_scheme_char(const int c) { - switch (c) { - case ':': - case '+': - case '-': - case '.': - return true; - default: - return is_alpha(c) || is_digit(c); - } + return c == '+' || c == '-' || c == '.' || c == ':' || is_alpha(c) || + is_digit(c); } #endif // SERD_SRC_URI_UTILS_H -- cgit v1.2.1