aboutsummaryrefslogtreecommitdiff
path: root/boot/lexer.ll
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-08-18 13:31:47 +0200
committerEugen Wissner <belka@caraus.de>2026-08-18 13:31:47 +0200
commit4f77ad5d019618893c59a0f8d5bfa6b98e50a3be (patch)
treed9e01460ecf94a491be476fbca76b6608276d967 /boot/lexer.ll
parent4b7c87a9b53f5317e9f7982bd779d53a66960bdc (diff)
downloadelna-4f77ad5d019618893c59a0f8d5bfa6b98e50a3be.tar.gz
Make Int and Word aliases to fixed-size types
Diffstat (limited to 'boot/lexer.ll')
-rw-r--r--boot/lexer.ll2
1 files changed, 1 insertions, 1 deletions
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<std::uint32_t> result = parse_character_literal(yytext);
if (!result.has_value())
{