Replace C++-style comments with C90 compatible ones.

This commit is contained in:
2018-03-18 19:21:09 -07:00
parent 9500a6f9b0
commit 94f1a11f15
2 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ int _lexer_foreach_convert_match(void* data, va_list args) {
struct lexer_state* state = va_arg(args, struct lexer_state*);
char first_char = state->source[match->from];
if(isspace(first_char)) {
// Skip
/* Skip */
} else if(first_char == '\n') {
state->line++;
state->line_from = match->to;