diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2014-12-23 00:35:24 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-23 09:22:16 -0800 |
commit | b404539126a567987b4748a67c06be2d23b471d5 (patch) | |
tree | 8987b95adf8077a6703b485e160b25f8a94a9447 /pod | |
parent | 2f15ba3e036b1e5e8181053654f0bd51cb56c5f3 (diff) | |
download | perl-b404539126a567987b4748a67c06be2d23b471d5.tar.gz |
silence VC Win64 perl warnings in hv_func.h
These warnings are in a public header, hv_func.h, so CPAN
XS builders will see 8 warnings with every .c file from
a CPAN XS module that they will compile. Silence the
warnings since headers should never warn unconditionally.
See [perl #123483] for details.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 54be512cf4..2064551f34 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -305,9 +305,19 @@ L</Modules and Pragmata> section. =over 4 -=item XXX-some-platform +=item Win32 -XXX +=over 4 + +=item * + +Previously, on Visual C++ for Win64 built Perls only, when compiling every Perl +XS module (including CPAN ones) and Perl aware .c file with a 64 bit Visual C++, +would uncondtionally have around a dozen warnings from hv_func.h. These +warnings have been silenced. GCC all bitness and Visual C++ for Win32 were +not affected. + +=back =back |