diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-01-17 13:59:47 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-01-17 13:59:47 (EST) |
commit | 2515acfdcab5fbf3d3dea76be86292ef8e605748 (patch) | |
tree | 5207e07bc82ddc0bb0eb258bd5a990b26f13466f /lib | |
parent | 1f107c1f673e9ea84d16693796375910b0c6eb22 (diff) | |
download | Math-Decimal-FastPP-2515acfdcab5fbf3d3dea76be86292ef8e605748.zip Math-Decimal-FastPP-2515acfdcab5fbf3d3dea76be86292ef8e605748.tar.gz Math-Decimal-FastPP-2515acfdcab5fbf3d3dea76be86292ef8e605748.tar.bz2 |
lib/Math/Decimal/FastPP.pm: Put strict and warnings pragmas in package
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Math/Decimal/FastPP.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm index c00a16a..85fe1d8 100644 --- a/lib/Math/Decimal/FastPP.pm +++ b/lib/Math/Decimal/FastPP.pm @@ -70,11 +70,11 @@ the common exponent of the input numbers. =cut +package Math::Decimal::FastPP; + use strict; use warnings; -package Math::Decimal::FastPP; - use Exporter qw(import); our @EXPORT = qw(dadd dmul drhtz drhfz); |