diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-01-31 12:24:23 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-31 12:24:23 -0800 |
commit | b7dfc24fff320221dbaefdfb6942b06580bf4381 (patch) | |
tree | 2bc2df9ab8ed7f0ee285af15500e44c93067d1de /ext/XS-APItest | |
parent | 8dfa72309d5b68ffad79ca5fdd02aceba01fe3cc (diff) | |
download | perl-b7dfc24fff320221dbaefdfb6942b06580bf4381.tar.gz |
XS::APItest: Move $VERSION further up
so it can be changed without one having to search for it.
Diffstat (limited to 'ext/XS-APItest')
-rw-r--r-- | ext/XS-APItest/APItest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/XS-APItest/APItest.pm b/ext/XS-APItest/APItest.pm index 45e95d24aa..7e7e8defe5 100644 --- a/ext/XS-APItest/APItest.pm +++ b/ext/XS-APItest/APItest.pm @@ -5,6 +5,8 @@ use strict; use warnings; use Carp; +our $VERSION = '0.36'; + require XSLoader; # Export everything since these functions are only used by a test script @@ -52,8 +54,6 @@ sub import { } } -our $VERSION = '0.36'; - use vars '$WARNINGS_ON_BOOTSTRAP'; use vars map "\$${_}_called_PP", qw(BEGIN UNITCHECK CHECK INIT END); |