-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
This warning appears when compiling with a modern Clang compiler:
pcre.c:2891:35: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
else if ((digitab[ptr[1]] && ctype_digit) != 0)
^ ~~~~~~~~~~~
pcre.c:2891:35: note: use '&' for a bitwise operation
else if ((digitab[ptr[1]] && ctype_digit) != 0)
^~
&
pcre.c:2891:35: note: remove constant to silence this warning
else if ((digitab[ptr[1]] && ctype_digit) != 0)
~^~~~~~~~~~~~~~
Metadata
Metadata
Assignees
Labels
No labels