In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/9dd1a77dda34b81dad2fc1260711f50c143f9fbe?hp=5862f74e25eb432805228f80a46c466b20396c27>

- Log -----------------------------------------------------------------
commit 9dd1a77dda34b81dad2fc1260711f50c143f9fbe
Author: Karl Williamson <[email protected]>
Date:   Wed Aug 3 18:59:36 2016 -0600

    perlhacktips: Add link for %formatting size_t args
-----------------------------------------------------------------------

Summary of changes:
 pod/perlhacktips.pod | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod
index ea470d9..5aa0b63 100644
--- a/pod/perlhacktips.pod
+++ b/pod/perlhacktips.pod
@@ -516,6 +516,9 @@ Or you can try casting to a "wide enough" type:
 
    printf("i = %"IVdf"\n", (IV)something_very_small_and_signed);
 
+See L<perlguts/Formatted Printing of Size_t and SSize_t> for how to
+print those.
+
 Also remember that the C<%p> format really does require a void pointer:
 
    U8* p = ...;

--
Perl5 Master Repository

Reply via email to