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
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).