Perl-Critic / PPI

54 stars 44 forks source link

Quash uninitialized errors in t/07_token.t. #253

Closed trwyant closed 2 years ago

trwyant commented 3 years ago

Since the code involved is a deliberate numeric comparison to undef, I have taken the coward's way out and just done a

no warnings qw{ uninitialized };

I have not created a new scope for this because the code involved was the last statement in its scope.

oalders commented 2 years ago

Thanks, @trwyant!