X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/368f75ae50489f85a5f83f997f050653f48e5d18..b8dce3c7c286678208d27713c5380cfe35867101:/src/cscannerHelp.c diff --git a/src/cscannerHelp.c b/src/cscannerHelp.c index ae202f4..8ecc211 100644 --- a/src/cscannerHelp.c +++ b/src/cscannerHelp.c @@ -725,12 +725,12 @@ bool cscannerHelp_handleSpecial (char *yyt) cstring_free (exname); } - cscannerHelp_handleNewLine (); // evans 2003-10-27: pragment increments line + (void) cscannerHelp_handleNewLine (); /* evans 2003-10-27: pragment increments line */ } else if (cstring_equalPrefixLit (olc, "ident")) { /* Some pre-processors will leave these in the code. Ignore rest of line */ - cscannerHelp_handleNewLine (); // evans 2003-10-27: ident increments line + (void) cscannerHelp_handleNewLine (); /* evans 2003-10-27: ident increments line */ } /* @@ -839,7 +839,7 @@ bool cscannerHelp_handleSpecial (char *yyt) ** We handle a plain # in the input file, by echoing it, and ignoring it in the post-pp-file. */ mstring_free (ol); - cscannerHelp_handleNewLine (); // evans 2003-10-27: increments line + (void) cscannerHelp_handleNewLine (); /* evans 2003-10-27: increments line */ return FALSE; } else { voptgenerror @@ -847,7 +847,7 @@ bool cscannerHelp_handleSpecial (char *yyt) message ("Unrecognized pre-processor directive: #%s", cstring_fromChars (ol)), g_currentloc); - cscannerHelp_handleNewLine (); // evans 2003-10-27: increments line + (void) cscannerHelp_handleNewLine (); /* evans 2003-10-27: increments line */ } sfree (ol);