|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-11-22 11:47 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
-Package: *General Issues
+Package: PCRE related
-PHP Version: 7.2.0RC6
+PHP Version: 7.1
[2017-11-22 11:47 UTC] requinix@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 12:00:01 2025 UTC |
Description: ------------ php-7.1.12/ext/pcre/pcrelib/pcre_study.c:1372:35: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context] Source code is if ((map[c/8] && (1 << (c&7))) != 0) maybe better code if ((map[c/8] & (1 << (c&7))) != 0)