Skip to content

Commit

Permalink
Make new warning suppression version-safe
Browse files Browse the repository at this point in the history
  • Loading branch information
David Christensen committed Jun 23, 2017
1 parent 6956a16 commit 538b627
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Vend/Util.pm
Expand Up @@ -92,7 +92,8 @@ else {
);

use strict;
no warnings qw(uninitialized numeric redundant);
no warnings qw(uninitialized numeric);
no warnings qw(redundant) if $^V ge v5.22.0;
use Config;
use Fcntl;
use Errno;
Expand Down

0 comments on commit 538b627

Please sign in to comment.