From 66a08f6570c189e66b31863d60ec68052e1d2d5f Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Sat, 8 Dec 2018 21:12:24 +0100 Subject: [PATCH] Remove an unused variable and fix a related comment --- ctags/main/lcpp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ctags/main/lcpp.c b/ctags/main/lcpp.c index 2d0fe109..dbdf6a3b 100644 --- a/ctags/main/lcpp.c +++ b/ctags/main/lcpp.c @@ -643,12 +643,11 @@ static int skipToEndOfCxxRawLiteralString (void) /* Skips to the end of the three (possibly four) 'c' sequence, returning a * special character to symbolically represent a generic character. - * Also detects Vera numbers that include a base specifier (ie. 'b1010). */ static int skipToEndOfChar (void) { int c; - int count = 0, veraBase = '\0'; + int count = 0; while ((c = getcAndCollect ()) != EOF) {