diff options
Diffstat (limited to 'lib/strict.pm')
-rw-r--r-- | lib/strict.pm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/strict.pm b/lib/strict.pm index 2b1d964e65..4e2baa3b1c 100644 --- a/lib/strict.pm +++ b/lib/strict.pm @@ -72,19 +72,11 @@ appears in curly braces or on the left hand side of the "=E<gt>" symbol. =back -See L<perlmod/Pragmatic Modules>. +See L<perlmodlib/Pragmatic Modules>. =cut -$strict::VERSION = "1.01"; - -my %bitmask = ( -refs => 0x00000002, -subs => 0x00000200, -vars => 0x00000400 -); - sub bits { my $bits = 0; foreach my $s (@_){ $bits |= $bitmask{$s} || 0; }; |