Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Math/Function/Interpolator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Math::Function::Interpolator;

use 5.006;
use strict;
use warnings FATAL => 'all';
use warnings;

use Carp qw(confess);
use Scalar::Util qw(looks_like_number);
Expand Down
2 changes: 1 addition & 1 deletion lib/Math/Function/Interpolator/Cubic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Math::Function::Interpolator::Cubic;

use 5.006;
use strict;
use warnings FATAL => 'all';
use warnings;

## VERSION

Expand Down
2 changes: 1 addition & 1 deletion lib/Math/Function/Interpolator/Linear.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Math::Function::Interpolator::Linear;

use 5.006;
use strict;
use warnings FATAL => 'all';
use warnings;

our @ISA = qw(Math::Function::Interpolator);

Expand Down
2 changes: 1 addition & 1 deletion lib/Math/Function/Interpolator/Quadratic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Math::Function::Interpolator::Quadratic;

use 5.006;
use strict;
use warnings FATAL => 'all';
use warnings;

## VERSION

Expand Down
2 changes: 1 addition & 1 deletion t/boilerplate.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
use warnings;
use Test::More;

plan tests => 3;
Expand Down