X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScalar-Vec-Util.git;a=blobdiff_plain;f=lib%2FScalar%2FVec%2FUtil.pm;h=4a97a67c3e3d2cf34a3e2c8e1f9a80bca0d84220;hp=1435972a64b3c2ab4beeb2de254dc932a2728ed0;hb=0f9ca88734df707e9f1d70a8067e6502b96820a9;hpb=37121cb9474fc2c3bc7c452696ecc9f6aa2ed4d2 diff --git a/lib/Scalar/Vec/Util.pm b/lib/Scalar/Vec/Util.pm index 1435972..4a97a67 100644 --- a/lib/Scalar/Vec/Util.pm +++ b/lib/Scalar/Vec/Util.pm @@ -3,7 +3,7 @@ package Scalar::Vec::Util; use strict; use warnings; -use Carp qw/croak/; +use Carp qw; =head1 NAME @@ -33,7 +33,7 @@ BEGIN { =head1 SYNOPSIS - use Scalar::Vec::Util qw/vfill vcopy veq/; + use Scalar::Vec::Util qw; my $s; vfill $s, 0, 100, 1; # Fill with 100 bits 1 starting at 0. @@ -207,12 +207,12 @@ They are all exported by the tags C<':consts'> and C<':all'>. =cut -use base qw/Exporter/; +use base qw; our @EXPORT = (); our %EXPORT_TAGS = ( - 'funcs' => [ qw/vfill vcopy vshift vrot veq/ ], - 'consts' => [ qw/SVU_PP SVU_SIZE/ ] + 'funcs' => [ qw ], + 'consts' => [ qw ] ); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];