From 3396a06b0b24b1f9e1a8338a54f91d5641f04723 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 17 Jan 2017 14:03:20 -0500 Subject: Math::Decimal::FastPP: Don't export by default --- 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"; -- cgit v0.9.1