From 8c075fca1f1c6fdb014320ccd1a7ce93753b89a8 Mon Sep 17 00:00:00 2001 From: Dylan Thacker-Smith Date: Thu, 27 Feb 2014 15:21:57 -0500 Subject: [PATCH] Remove a couple FIXME comments which are only partially a lie. I added those comments before creating an invalid token type to return the error. However, we still aren't making use of the token type. --- ext/liquid/tokenizer.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/liquid/tokenizer.c b/ext/liquid/tokenizer.c index 096306f..9fa31ac 100644 --- a/ext/liquid/tokenizer.c +++ b/ext/liquid/tokenizer.c @@ -65,7 +65,6 @@ void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *tok token->type = TOKEN_TAG; goto found; } - // FIXME: Handle syntax error for strict mode cursor = incomplete_end; goto found; } else { @@ -79,7 +78,6 @@ void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *tok token->type = TOKEN_VARIABLE; goto found; } - // FIXME: Handle syntax error for strict mode cursor = incomplete_end; goto found; }