This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
PATCH [perl #126036] toke.c: Silence some compiler warnings
authorKarl Williamson <khw@cpan.org>
Sun, 13 Sep 2015 03:02:24 +0000 (21:02 -0600)
committerKarl Williamson <khw@cpan.org>
Sun, 13 Sep 2015 13:36:07 +0000 (07:36 -0600)
commit1f9a1c0bdb88fe8f4b38dadcebb4988215612692
tree5eb406f3235a6db0bef699d7d7b7ee866d571319
parent8736d1c336efff364daa33d27d0381c4de4771d0
PATCH [perl #126036] toke.c: Silence some compiler warnings

The ticket proposes a new format to output IV's as hex using capital
letters for the digits A-F.  However, this isn't necessary in this case,
as even though these are IV's, they can never be negative, and we have
an existing format that prints these fine.

More work needs to be done to fix the problem if something larger than
an IV is used (currently it loops).
toke.c