From a83f6a2e53de7a9322755d68ebc9f13e3babecc2 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 16 Feb 2024 00:20:18 +0200 Subject: rework + Kind of only a partial commit, but whatever, this history is pretty ugly anyway --- src/lexer.l | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lexer.l') diff --git a/src/lexer.l b/src/lexer.l index a446c49..c819328 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -39,7 +39,7 @@ HEXF [+-]?0[xX][0-9a-fA-F]+([pP][+-]?[0-9]+) DECF [+-]?[0-9]+[.]([eE]?[+-]?[0-9]+)?[fF]? ID [_a-zA-Z][_a-zA-Z0-9]* -APPLY {ID}[[:space:]]*! +APPLY {ID}! STRING \"(\\.|[^"\\])*\" @@ -151,7 +151,6 @@ STRING \"(\\.|[^"\\])*\" "struct" {return STRUCT;} "typedef" {return TYPEDEF;} "import" {return IMPORT;} -"typeof" {return TYPEOF;} "sizeof" {return SIZEOF;} "embed" {return EMBED;} "if" {return IF;} -- cgit v1.3