From: Rafael Garcia-Suarez Date: Fri, 4 Jul 2003 19:31:33 +0000 (+0000) Subject: Fix non-numeric $VERSION. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2e672bf1391c64c512cc6e5f1b1fd73fb2d6d015;p=p5sagit%2Fp5-mst-13.2.git Fix non-numeric $VERSION. p4raw-id: //depot/perl@19998 --- diff --git a/lib/Math/BigInt.pm b/lib/Math/BigInt.pm index 1625d1c..f59395c 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);