diff options
author | Brian Fraser <fraserbn@gmail.com> | 2014-09-29 20:33:19 +0200 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-10-31 13:34:57 +0100 |
commit | f5f6538d1935b7a7b00b4f8d43f2f7169217b3f6 (patch) | |
tree | c1039a47914cbc535c67feb1311a5aa3c080897f /lib | |
parent | 44195fc344101209b6578cf2a5ffb64c1999971c (diff) | |
download | perl-f5f6538d1935b7a7b00b4f8d43f2f7169217b3f6.tar.gz |
overload.pm: Removed an unused variable
Diffstat (limited to 'lib')
-rw-r--r-- | lib/overload.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/overload.pm b/lib/overload.pm index fc9ff4e9e2..dc373808a2 100644 --- a/lib/overload.pm +++ b/lib/overload.pm @@ -1,6 +1,6 @@ package overload; -our $VERSION = '1.23'; +our $VERSION = '1.24'; %ops = ( with_assign => "+ - * / % ** << >> x .", @@ -30,7 +30,7 @@ sub nil {} sub OVERLOAD { $package = shift; my %arg = @_; - my ($sub, $fb); + my $sub; *{$package . "::(("} = \&nil; # Make it findable via fetchmethod. for (keys %arg) { if ($_ eq 'fallback') { |