summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-17 14:03:20 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-17 14:03:20 (EST)
commit3396a06b0b24b1f9e1a8338a54f91d5641f04723 (patch)
tree62fbf7cdeb97006ba8fb60365c525953ed656503
parent2515acfdcab5fbf3d3dea76be86292ef8e605748 (diff)
downloadMath-Decimal-FastPP-3396a06b0b24b1f9e1a8338a54f91d5641f04723.zip
Math-Decimal-FastPP-3396a06b0b24b1f9e1a8338a54f91d5641f04723.tar.gz
Math-Decimal-FastPP-3396a06b0b24b1f9e1a8338a54f91d5641f04723.tar.bz2
Math::Decimal::FastPP: Don't export by default
-rw-r--r--lib/Math/Decimal/FastPP.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm
index 85fe1d8..8c97e4d 100644
--- a/lib/Math/Decimal/FastPP.pm
+++ b/lib/Math/Decimal/FastPP.pm
@@ -4,7 +4,7 @@ Math::Decimal::FastPP - Fast pure-Perl decimal math
=head1 SYNOPSIS
- use Math::Decimal::FastPP;
+ use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz);
$a = dadd($a, "1.23"); # $a += 1.23
$c = dmul($a, $b); # $c = $a * $b
@@ -76,7 +76,7 @@ use strict;
use warnings;
use Exporter qw(import);
-our @EXPORT = qw(dadd dmul drhtz drhfz);
+our @EXPORT_OK = qw(dadd dmul drhtz drhfz);
our $VERSION = "0.001";