This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_pack.c: Remove obsolete code
authorKarl Williamson <khw@cpan.org>
Sat, 11 Feb 2017 20:00:27 +0000 (13:00 -0700)
committerKarl Williamson <khw@cpan.org>
Sun, 12 Feb 2017 04:11:13 +0000 (21:11 -0700)
commit05fefba96af5488952719c6f57af518afba9170a
tree4f5b8de2441d2f1fe51c58da2881276a1efb63d7
parent15b010f03b2e5fb7406abea47a023c54c42402a2
pp_pack.c: Remove obsolete code

This code effectively reduced to

 if (foo) 0 else 0

because a #define was changed to 0 some releases ago.  Just replace by

 0
pp_pack.c