From 71b1f4d5a5895d5971e1dd01080b75f71043ddee Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 31 Jul 2017 10:56:41 +0900 Subject: [PATCH] epp - remove redundent check for char makes static analyisers happy... not a bug found by PVS studio --- src/bin/edje/epp/cpplib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c index 0d7bb5dd7a..0eb25e2b67 100644 --- a/src/bin/edje/epp/cpplib.c +++ b/src/bin/edje/epp/cpplib.c @@ -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':