Fixed clang warning: equality comparison with extraneous parentheses.

This commit is contained in:
bkaradzic 2014-08-20 21:06:20 -07:00
parent b5627dc1b5
commit c97cec7114

View File

@ -289,7 +289,7 @@ ReturnCode cppmain(struct Global *global)
unget(global); /* Reread the char. */ unget(global); /* Reread the char. */
for (;;) { /* For the whole line, */ for (;;) { /* For the whole line, */
do { /* Token concat. loop */ do { /* Token concat. loop */
for (global->chpos = counter = 0; (type[(c = get(global))] == SPA);) { for (global->chpos = counter = 0; type[(c = get(global))] == SPA;) {
#if COMMENT_INVISIBLE #if COMMENT_INVISIBLE
if (c != COM_SEP) if (c != COM_SEP)
counter++; counter++;