fix compilation warning
Karen Etheridge [Sun, 22 Dec 2019 18:10:16 +0000 (10:10 -0800)]
"./stolen_chunk_of_toke.c:1014:27: warning: '&&' within '||' [-Wlogical-op-parentheses]"

stolen_chunk_of_toke.c

index 038a91c..95e2839 100644 (file)
@@ -1010,8 +1010,8 @@ S_scan_ident(pTHX_ register char *s, register const char *send, char *dest, STRL
            d++;
            if (UTF) {
                e = s;
-               while (  (   e < send
-                          && isIDFIRST_utf8_safe(e, send)
+               while ( ((   e < send
+                          && isIDFIRST_utf8_safe(e, send))
                        || *e == ':'))
                 {
                    e += UTF8SKIP(e);