From 60136fc4e9020b5a40aba6e7718fe267fdd7432d Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Thu, 27 Nov 2014 21:30:49 +0100 Subject: [PATCH] Minor cleanups to lexer. --- Monicelli.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Monicelli.ll b/Monicelli.ll index 3099079..d8778d1 100644 --- a/Monicelli.ll +++ b/Monicelli.ll @@ -6,7 +6,7 @@ extern int lineNumber; void monicelli_error(const char *); -void monicelli_meta(const char *); // Extern void serve? +void monicelli_meta(const char *); using namespace monicelli; %} @@ -174,7 +174,7 @@ CHAR [a-zA-Z_] . { monicelli_error("Unexpected token"); return -1; -}; +} %%