From: Rafael Garcia-Suarez Date: Thu, 17 Jun 2010 12:19:03 +0000 (+0200) Subject: Avoid warnings with undefined hash values [perl #74280] X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1e6ffe563afa06bebdef40d37cf4bdae8ac5f14d;p=p5sagit%2Fp5-mst-13.2.git Avoid warnings with undefined hash values [perl #74280] --- diff --git a/ext/Hash-Util/lib/Hash/Util.pm b/ext/Hash-Util/lib/Hash/Util.pm index 0fa1469..95da7d9 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;