X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Size.git;a=blobdiff_plain;f=lib%2FDevel%2FSize.pm;h=19812a52f8e407df15fcae21ce7e3b03a45df896;hp=c71f1e2a0c5f6d4684f105f687002f3c441f4d86;hb=0f6519384a2c1182532e669235866c459dbd17d2;hpb=8d1f46c5ea38e057de3ade70c5d81256aea7f873 diff --git a/lib/Devel/Size.pm b/lib/Devel/Size.pm index c71f1e2..19812a5 100644 --- a/lib/Devel/Size.pm +++ b/lib/Devel/Size.pm @@ -1,23 +1,20 @@ package Devel::Size; use strict; -use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $warn $dangle); +use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS $warn $dangle); -require 5.008; +require 5.005; require Exporter; require XSLoader; @ISA = qw(Exporter); -# This allows declaration use Devel::Size ':all'; -%EXPORT_TAGS = ( 'all' => [ qw( - size total_size -) ] ); +@EXPORT_OK = qw(size total_size); -@EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); +# This allows declaration use Devel::Size ':all'; +%EXPORT_TAGS = ( 'all' => \@EXPORT_OK ); -@EXPORT = qw( ); -$VERSION = '0.72_52'; +$VERSION = '0.76_50'; XSLoader::load( __PACKAGE__);