On 03/29/2017 01:16 PM, SSC_perl wrote:
Does anyone know how to keep Perl Critic from complaining about subroutine signatures? I’m getting a massive amount of these types of warnings:Subroutine prototypes used at line...
i would ask why are you using prototypes? they are rarely useful (especially as arg checkers). the primary good use is changing how a sub is parsed when called (unary, taking a block arg, etc).
uri