In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ea99f9ada5de06993fcf40478fcde588dd0c7be7?hp=88aeef83d79fbcd4dab43cc58155923e65a6d82e>

- Log -----------------------------------------------------------------
commit ea99f9ada5de06993fcf40478fcde588dd0c7be7
Author: Daniel Dragan <[email protected]>
Date:   Sun Feb 21 12:28:14 2016 -0500

    silence warning in Win32CORE
    
    Win32CORE.c: In function ‘boot_Win32CORE’:
    ../../XSUB.h:127:43: warning: unused parameter ‘cv’ [-Wunused-parameter]
-----------------------------------------------------------------------

Summary of changes:
 ext/Win32CORE/Win32CORE.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ext/Win32CORE/Win32CORE.c b/ext/Win32CORE/Win32CORE.c
index 524cf3f..5024642 100644
--- a/ext/Win32CORE/Win32CORE.c
+++ b/ext/Win32CORE/Win32CORE.c
@@ -46,6 +46,7 @@ XS_EXTERNAL(boot_Win32CORE)
      * and win32/buildext.pl will all generate references to it.  The function
      * should never be called though, as Win32CORE.pm doesn't use DynaLoader.
      */
+    PERL_UNUSED_ARG(cv);
 }
 
 EXTERN_C

--
Perl5 Master Repository

Reply via email to