raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=71b1f4d5a5895d5971e1dd01080b75f71043ddee

commit 71b1f4d5a5895d5971e1dd01080b75f71043ddee
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Mon Jul 31 10:56:41 2017 +0900

    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':

-- 


Reply via email to