diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-07-30 22:43:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-07-30 23:24:24 -0700 |
commit | 4ae8bca72003be3124a3f42a3c2bd1ad253dfebc (patch) | |
tree | 80bc56e50acf88c138bdeaff80e05c78100ac73b /dist/Storable | |
parent | a137b8e55003972a0592a0447c134e64d67d3423 (diff) | |
download | perl-4ae8bca72003be3124a3f42a3c2bd1ad253dfebc.tar.gz |
Get Storable’s blessed.t passing again in 5.8.1-
Back then, sub {} meant sub {wantarray?@_:undef}.
Diffstat (limited to 'dist/Storable')
-rw-r--r-- | dist/Storable/t/blessed.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Storable/t/blessed.t b/dist/Storable/t/blessed.t index 775592d5d6..4153b0a80e 100644 --- a/dist/Storable/t/blessed.t +++ b/dist/Storable/t/blessed.t @@ -271,7 +271,7 @@ is(ref $t, 'STRESS_THE_STACK'); { { package WeirdRefHook; - sub STORABLE_freeze { } + sub STORABLE_freeze { () } $INC{'WeirdRefHook.pm'} = __FILE__; } |