lexer: Remove unneeded isxdigit() check

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-16 13:45:49 -05:00
parent 04b253ce26
commit 38fab3f7e5

View File

@@ -357,8 +357,6 @@ lexer_scan_num(struct rifle_state *state, int lc, struct token *tok)
return -1;
if ((lc = lexer_nom(state, false)) == '\0')
return -1;
if (!isxdigit(lc))
return -1;
}
/*