summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-07-04 19:31:33 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-07-04 19:31:33 +0000
commit2e672bf1391c64c512cc6e5f1b1fd73fb2d6d015 (patch)
tree78b7b1206307655ad651e6210d3b8cffbc8a6974
parent1ff64b0ccbed1960592785f0dfe5c11eb1b0292c (diff)
downloadperl-2e672bf1391c64c512cc6e5f1b1fd73fb2d6d015.tar.gz
Fix non-numeric $VERSION.
p4raw-id: //depot/perl@19998
-rw-r--r--lib/Math/BigInt.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Math/BigInt.pm b/lib/Math/BigInt.pm
index 1625d1cef9..f59395c58e 100644
--- a/lib/Math/BigInt.pm
+++ b/lib/Math/BigInt.pm
@@ -19,6 +19,7 @@ my $class = "Math::BigInt";
require 5.005;
$VERSION = '1.64_01';
+$VERSION = eval $VERSION;
use Exporter;
@ISA = qw( Exporter );
@EXPORT_OK = qw( objectify _swap bgcd blcm);