Remove an unused variable and fix a related comment

This commit is contained in:
Colomban Wendling 2018-12-08 21:12:24 +01:00
parent 1c3634ebb9
commit 66a08f6570

View File

@ -643,12 +643,11 @@ static int skipToEndOfCxxRawLiteralString (void)
/* Skips to the end of the three (possibly four) 'c' sequence, returning a /* Skips to the end of the three (possibly four) 'c' sequence, returning a
* special character to symbolically represent a generic character. * special character to symbolically represent a generic character.
* Also detects Vera numbers that include a base specifier (ie. 'b1010).
*/ */
static int skipToEndOfChar (void) static int skipToEndOfChar (void)
{ {
int c; int c;
int count = 0, veraBase = '\0'; int count = 0;
while ((c = getcAndCollect ()) != EOF) while ((c = getcAndCollect ()) != EOF)
{ {