From 2281a7f92894a840767dbe4ace2e99769cdd6622 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 16 Oct 2022 16:27:08 -0300 Subject: bin/*.pl: Explicitly name the excluded warnings The previous version had a catch-all for all warnings, even the ones I don't know that I have, or future warnings that could appear. --- bin/nato | 2 +- bin/status-bar | 2 +- bin/uri | 2 +- bin/x | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/nato b/bin/nato index 75c208e..5287acd 100755 --- a/bin/nato +++ b/bin/nato @@ -4,7 +4,7 @@ use v5.34; use strict; use warnings; use feature 'signatures'; -no warnings 'experimental'; +no warnings ('experimental::signatures'); use Getopt::Std (); sub usage($fh) { diff --git a/bin/status-bar b/bin/status-bar index 31f9bd2..a96e5ae 100755 --- a/bin/status-bar +++ b/bin/status-bar @@ -9,7 +9,7 @@ use v5.34; use strict; use warnings; use feature 'signatures'; -no warnings 'experimental'; +no warnings ('experimental::signatures'); use Getopt::Std (); use JSON (); diff --git a/bin/uri b/bin/uri index dfd4cfe..77022c9 100755 --- a/bin/uri +++ b/bin/uri @@ -4,7 +4,7 @@ use v5.34; use strict; use warnings; use feature 'signatures'; -no warnings 'experimental'; +no warnings ('experimental::signatures'); use Getopt::Std (); use URI::Escape (); diff --git a/bin/x b/bin/x index 21bd1f7..b51ce96 100755 --- a/bin/x +++ b/bin/x @@ -4,7 +4,7 @@ use v5.34; use strict; use warnings; use feature 'signatures'; -no warnings 'experimental'; +no warnings ('experimental::signatures', 'experimental::smartmatch'); use Getopt::Std (); sub usage($fh) { -- cgit v1.2.3