Skip to content

Commit dd881e1

Browse files
author
billzt
authored
Fix bugs in Perl versions >5.18
1 parent a1a2bc9 commit dd881e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gff3sort.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Sort::Naturally qw/nsort/; ###### https://metacpan.org/pod/Sort::Naturally
1111
use Sort::Topological qw/toposort/; ###### https://metacpan.org/pod/Sort::Topological
1212
use Pod::Usage;
13-
use experimental qw/smartmatch/;
13+
no if ($] >= 5.018), 'warnings' => 'experimental';
1414

1515
############ Usage ############
1616
my $help;

0 commit comments

Comments
 (0)