This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Standardise the conditional compilation protection of ({}) from
authorNicholas Clark <nick@ccl4.org>
Sat, 26 Jan 2008 16:44:43 +0000 (16:44 +0000)
committerNicholas Clark <nick@ccl4.org>
Sat, 26 Jan 2008 16:44:43 +0000 (16:44 +0000)
commit7fe44985589724dcec9673580abb16118ba49068
treef7d3c46347a4a1ced8644cd21431355ebdc31c7c
parentd28d780685cbd952928da9c691e2b5bae129457a
Standardise the conditional compilation protection of ({}) from
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(PERL_GCC_PEDANTIC)
to
#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
because the ({}) construction can be used under __STRICT_ANSI__
(and should be, because it avoids temporary use of PL_Sv).

p4raw-id: //depot/perl@33077
regexp.h
sv.h