From 49e9c776dbc54a839ee8c9ba84d84ecd99efcc74 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 5 Sep 2013 18:58:09 +0200 Subject: fix smartmatch warnings on perl >= 5.018 --- bin/hashl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/hashl b/bin/hashl index c7519c5..39b76ef 100755 --- a/bin/hashl +++ b/bin/hashl @@ -6,6 +6,8 @@ use strict; use warnings; use 5.010; +no if $] >= 5.018, warnings => "experimental::smartmatch"; + use App::Hashl; use Cwd; use File::Copy; -- cgit v1.2.3