diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-09-05 18:58:09 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-09-05 18:58:09 +0200 |
commit | 49e9c776dbc54a839ee8c9ba84d84ecd99efcc74 (patch) | |
tree | c518d51778cc2ad085b5b031641d35a6e85032b0 /bin/hashl | |
parent | ee9f2454c5d7a2b6b3c4339c53a266ac4f301b0c (diff) |
fix smartmatch warnings on perl >= 5.018
Diffstat (limited to 'bin/hashl')
-rwxr-xr-x | bin/hashl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |