diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-09 06:30:03 -0800 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-01-14 09:33:01 -0500 |
commit | 0953b66bdb6b9cd4da676d1614e87fe081b20a9c (patch) | |
tree | 965f4ed80afcc8a81700f274392e1e8cf12a2a5f /regen | |
parent | ef40a5dd8380ca9dcbf40ccf6f706a4b5e25bbc6 (diff) | |
download | perl-0953b66bdb6b9cd4da676d1614e87fe081b20a9c.tar.gz |
Make key/push $scalar experimental
We need a better name for the experimental category, but I have not
thought of one, even after sleeping on it.
Diffstat (limited to 'regen')
-rwxr-xr-x | regen/regcharclass.pl | 1 | ||||
-rw-r--r-- | regen/warnings.pl | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/regen/regcharclass.pl b/regen/regcharclass.pl index bb290d5496..13ac0b4ed4 100755 --- a/regen/regcharclass.pl +++ b/regen/regcharclass.pl @@ -4,6 +4,7 @@ use strict; use 5.008; use warnings; use warnings FATAL => 'all'; +no warnings 'experimental::aggref'; use Text::Wrap qw(wrap); use Data::Dumper; $Data::Dumper::Useqq= 1; diff --git a/regen/warnings.pl b/regen/warnings.pl index e8dcf4ab06..a7bf9ab7b7 100644 --- a/regen/warnings.pl +++ b/regen/warnings.pl @@ -99,6 +99,8 @@ my $tree = { [ 5.017, DEFAULT_ON ], 'experimental::postderef' => [ 5.019, DEFAULT_ON ], + 'experimental::aggref' => + [ 5.019, DEFAULT_ON ], }], #'default' => [ 5.008, DEFAULT_ON ], |