diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-09-14 00:44:35 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-09-14 00:44:35 +0200 |
commit | 2aa6a1fb6884c11328dfefd59a90b63031c0cd55 (patch) | |
tree | ae27d0478a95d1aaac2a9f3e916b1da94ad671d2 /dist/Math-BigInt | |
parent | 690165debe9e5428b4d2b06af2a8db2855f070ac (diff) | |
download | perl-2aa6a1fb6884c11328dfefd59a90b63031c0cd55.tar.gz |
Upgrade Math::BigInt from version 1.93 to 1.95
Diffstat (limited to 'dist/Math-BigInt')
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Math-BigInt/lib/Math/BigInt.pm b/dist/Math-BigInt/lib/Math/BigInt.pm index 08c163286f..b673bf1517 100644 --- a/dist/Math-BigInt/lib/Math/BigInt.pm +++ b/dist/Math-BigInt/lib/Math/BigInt.pm @@ -18,7 +18,7 @@ package Math::BigInt; my $class = "Math::BigInt"; use 5.006002; -$VERSION = '1.93'; +$VERSION = '1.95'; @ISA = qw(Exporter); @EXPORT_OK = qw(objectify bgcd blcm); @@ -1260,7 +1260,7 @@ sub blog # objectify is costly, so avoid it if ((!ref($_[0])) || (ref($_[0]) ne ref($_[1]))) { - ($self,$x,$base,@r) = objectify(1,ref($x),@_); + ($self,$x,$base,@r) = objectify(2,@_); } return $x if $x->modify('blog'); |