Subject: | Possible precedence issue with control flow operator at ./t/16destroy.t |
With the patches in [perl #59802] applied the following construct is warned:
< exit $self->FETCH('Active') || 0 unless $^O eq 'MSWin32';
Show quoted text
> exit ($self->FETCH('Active') || 0) unless $^O eq 'MSWin32';
t/zvxgp_15array.t ............... ok
Possible precedence issue with control flow operator at ./t/16destroy.t line 81.
t/zvxgp_16destroy.t ............. ok
Please add the parens to improve the readability.