5.6 compat
Peter Rabbitson [Tue, 12 Mar 2013 22:51:29 +0000 (23:51 +0100)]
Makefile.PL
t/tags.t

index 65e5fd1..2c0f4f2 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings FATAL => 'all';
-use 5.008001;
+use 5.006;
 use ExtUtils::MakeMaker;
 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
index 5af34c6..85a31b1 100644 (file)
--- a/t/tags.t
+++ b/t/tags.t
@@ -25,11 +25,10 @@ BEGIN {
          bb      => [qw/ bar baz /],
       },
    };
-   use constant {
-      foo => 1,
-      bar => 2,
-      baz => 3,
-   };
+   use constant foo => 1;
+   use constant bar => 2;
+   use constant baz => 3;
+
    $INC{'Local/Exporter.pm'} = __FILE__;
 };