diff options
author | 2019-02-13 21:15:00 +0000 | |
---|---|---|
committer | 2019-02-13 21:15:00 +0000 | |
commit | 9f11ffb7133c203312a01e4b986886bc88c7d74b (patch) | |
tree | 6618511204c614b20256e4ef9dea39a7b311d638 /gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm | |
parent | Import perl-5.28.1 (diff) | |
download | wireguard-openbsd-9f11ffb7133c203312a01e4b986886bc88c7d74b.tar.xz wireguard-openbsd-9f11ffb7133c203312a01e4b986886bc88c7d74b.zip |
Fix merge issues, remove excess files - match perl-5.28.1 dist
looking good sthen@, Great! bluhm@
Diffstat (limited to 'gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm')
-rw-r--r-- | gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm b/gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm index b7150c468e6..c61b65289ba 100644 --- a/gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm +++ b/gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/Test.pm @@ -7,17 +7,17 @@ use warnings; use Exporter; use Math::BigRat; use Math::BigFloat; -our ($VERSION, @ISA, $accuracy, $precision, $round_mode, $div_scale); -@ISA = qw(Math::BigRat Exporter); -$VERSION = 0.04; +our @ISA = qw(Math::BigRat Exporter); +our $VERSION = '0.04'; use overload; # inherit overload from BigRat # Globals -$accuracy = $precision = undef; -$round_mode = 'even'; -$div_scale = 40; +our $accuracy = undef; +our $precision = undef; +our $round_mode = 'even'; +our $div_scale = 40; my $class = 'Math::BigRat::Test'; |