Subject: | Use of qw(...) as parentheses is deprecated |
The current version of perl, 5.16.0 issues a warning 'Use of qw(...) as
parentheses is deprecated' when seeing a construct like
__PACKAGE__->mk_accessors qw(...)
which must now be written as
__PACKAGE__->mk_accessors ( qw(...) )
In the next version of perl this deprecation will become an error. In
current bleadperl since commit v5.16.0-235-g417a992 this is already
implemented and breaks ASHLEY/Lingua-EN-Titlecase-0.14.tar.gz
The above code sample can be found at
https://metacpan.org/source/ASHLEY/Lingua-EN-Titlecase-0.14/lib/Lingua/EN/Titlecase.pm#L9
HTH && Regards,