Avoid warnings with undefined hash values [perl #74280]
Rafael Garcia-Suarez [Thu, 17 Jun 2010 12:19:03 +0000 (14:19 +0200)]
ext/Hash-Util/lib/Hash/Util.pm

index 0fa1469..95da7d9 100644 (file)
@@ -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;