diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-06-17 14:19:03 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-06-17 22:17:42 +0200 |
commit | 1e6ffe563afa06bebdef40d37cf4bdae8ac5f14d (patch) | |
tree | 52b416b67978655a8d0ac73717a466084d4910ca /ext | |
parent | 30fcd6c4143961133edf166c63dcc423fbcdb973 (diff) | |
download | perl-1e6ffe563afa06bebdef40d37cf4bdae8ac5f14d.tar.gz |
Avoid warnings with undefined hash values [perl #74280]
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Hash-Util/lib/Hash/Util.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/Hash-Util/lib/Hash/Util.pm b/ext/Hash-Util/lib/Hash/Util.pm index 0fa1469024..95da7d9419 100644 --- a/ext/Hash-Util/lib/Hash/Util.pm +++ b/ext/Hash-Util/lib/Hash/Util.pm @@ -4,6 +4,7 @@ require 5.007003; use strict; use Carp; use warnings; +no warnings 'uninitialized'; use warnings::register; use Scalar::Util qw(reftype); @@ -28,7 +29,7 @@ our @EXPORT_OK = qw( hash_seed hv_store ); -our $VERSION = 0.07; +our $VERSION = '0.08'; require DynaLoader; local @ISA = qw(DynaLoader); bootstrap Hash::Util $VERSION; |