This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Change structure element size and loc
authorKarl Williamson <khw@cpan.org>
Fri, 19 Feb 2016 04:08:24 +0000 (21:08 -0700)
committerKarl Williamson <khw@cpan.org>
Fri, 19 Feb 2016 17:41:42 +0000 (10:41 -0700)
commit911bd04eeef784865e4400fef38495936f905e35
tree711e9eabf2fff7d5a1bef5cde25cf9ec6b905312
parent5105e860ee4e854010122018bbdbb8c1c1863539
regcomp.c: Change structure element size and loc

The 'strict' field is only a bool, but was declared I32, which led to
warnings on some compilers when it was passed to a function expecting a
bool.  It is moved to the end of the structure, since it doesn't pack
well with the rest.
regcomp.c