tccpp: fix problem in preprocess_skip with empty #

for example:

   #ifdef stuff
   # /* some comment */
   #endif
This commit is contained in:
grischka 2011-03-06 19:13:12 +01:00
parent c27e76aa2a
commit 5d55647a3c

View File

@ -746,6 +746,8 @@ redo_start:
a--;
else if( tok == TOK_ERROR || tok == TOK_WARNING)
in_warn_or_error = 1;
else if (tok == TOK_LINEFEED)
goto redo_start;
}
break;
_default: