Skip to content

Commit

Permalink
PDL::Lite strict & warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Feb 28, 2019
1 parent 59ae758 commit 184ebe0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Basic/Lite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Access to other functions is by method syntax, viz:

package PDL::Lite;

use strict;
use warnings;

use PDL::Core qw(pdl piddle barf null);
use PDL::Ops '';
use PDL::Primitive '';
Expand All @@ -43,11 +46,11 @@ use PDL::Bad '';
use PDL::Version ; # Doesn't export anything - no need for ''
use PDL::Lvalue;

$VERSION = $PDL::Version::VERSION;
our $VERSION = $PDL::Version::VERSION;

@ISA = qw( PDL::Exporter );
our @ISA = qw( PDL::Exporter );

@EXPORT = qw( piddle pdl null barf ); # Only stuff always exported!
our @EXPORT = qw( piddle pdl null barf ); # Only stuff always exported!
our %EXPORT_TAGS = (
Func => [@EXPORT],
);
Expand Down

0 comments on commit 184ebe0

Please sign in to comment.