epp - remove redundent check for char

makes static analyisers happy... not a bug

found by PVS studio
This commit is contained in:
Carsten Haitzler 2017-07-31 10:56:41 +09:00
parent 6ac4ea2080
commit 71b1f4d5a5
1 changed files with 1 additions and 1 deletions

View File

@ -1019,7 +1019,7 @@ copy_rest_of_line(cpp_reader * pfile)
break;
case '/':
nextc = PEEKC();
if (nextc == '*' || (opts->cplusplus_comments && nextc == '*'))
if (nextc == '*' || opts->cplusplus_comments)
goto scan_directive_token;
break;
case '\f':