Re: Preparing 4.4b
Jerry James <[email protected]> Fri, 5 Feb 2021 10:37:56 -0700
| Newsgroups | gmane.lisp.scheme.bigloo |
|---|---|
| Message-ID | <CAHCOHQnhFfONVSNqY9cm9uZkGA5Hxy0eDVtVzF6rN+LjV3Ao4Q@mail.gmail.com> |
On Thu, Feb 4, 2021 at 10:16 AM <[email protected]> wrote: > The version 4.4b is almost complete and ready. I would be glab if you > could give a try before it is official released. Thanks in advance for > your help, GCC says: In file included from Clib/cregexp.c:16: Clib/cpcre.h: In function 'bgl_regcomp': Clib/cpcre.h:340:14: warning: suggest parentheses around operand of '!' or change '&' to '&&' or '!' to '~' [-Wparentheses] 340 | if( !options & PCRE_BGLNORAISE ) { | ^~~~~~~~ The expression "!options & PCRE_BGLNORAISE" is parsed as "(!options) & PCRE_BGLNORAISE". I'm pretty sure you want "!(options & PCRE_BGLNORAISE)" here. Regards, -- Jerry James http://www.jamezone.org/