in reply to Problem with Math::BigInt::Named
package Math::BigInt::Named; require 5.006001; use strict; use Math::BigInt::Named; use vars qw($VERSION @ISA $accuracy $precision $round_mode $div_scale); @ISA = qw(Math::BigInt);
Does it make any sense for the module to try to use itself? Submit a patch that drops "::Named" from the 4th statement of the module. To work around the problem w/o fixing the module, add require Math::BigInt; to your own code.
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with Math::BigInt::Named (luke)
by blazar (Canon) on Aug 28, 2007 at 14:03 UTC |