diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-09-05 19:02:47 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-09-05 19:02:47 +0200 |
commit | 47fdea96b9d6ba9e56a42e59dc43b29666990a4b (patch) | |
tree | b6877e50cc4037f4c4258f30df7ad9ed83434324 | |
parent | c9ea03bdcd44963dce99dbc7a70e6a030fb4e026 (diff) |
fix smartmatch warnings on perl >= 5.018
-rw-r--r-- | cgi/index.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 0aa3e17..df66039 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -11,6 +11,7 @@ use Travel::Status::DE::DeutscheBahn; use Travel::Status::DE::VRR; no warnings 'uninitialized'; +no if $] >= 5.018, warnings => "experimental::smartmatch"; our $VERSION = '0.06'; |