From 4f77ad5d019618893c59a0f8d5bfa6b98e50a3be Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 18 Aug 2026 13:31:47 +0200 Subject: Make Int and Word aliases to fixed-size types --- boot/lexer.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot/lexer.ll') diff --git a/boot/lexer.ll b/boot/lexer.ll index c6d3b17..888c17d 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -359,7 +359,7 @@ to { } return yy::parser::make_WORD8(std::make_pair(result.value(), integer_sign::_unsigned), this->location); } -`([^'\\\n]|\\.|\\\n)+` { +`([^`\\\n]|\\.|\\\n)+` { std::optional result = parse_character_literal(yytext); if (!result.has_value()) { -- cgit v1.2.3