summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-07-31 10:56:41 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-07-31 10:58:27 +0900
commit71b1f4d5a5895d5971e1dd01080b75f71043ddee (patch)
tree7c3d729dff946ebac7f37f18edce1b5b188ee70d
parent6ac4ea20807722a906141a4159579cca22e87160 (diff)
downloadefl-71b1f4d5a5895d5971e1dd01080b75f71043ddee.tar.gz
epp - remove redundent check for char
makes static analyisers happy... not a bug found by PVS studio
-rw-r--r--src/bin/edje/epp/cpplib.c2
1 files changed, 1 insertions, 1 deletions
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':