In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/39ced5adb3b09f93e0263d0f679de4cb6d7c2dc9?hp=901ee108fe1f8070e4722d8313bf202d0eb843b0>

- Log -----------------------------------------------------------------
commit 39ced5adb3b09f93e0263d0f679de4cb6d7c2dc9
Author: Karl Williamson <[email protected]>
Date:   Sat Jan 4 10:43:22 2014 -0700

    vxs.inc: Move code to after declarations
    
    This macro, added in e1c774b6, is actual code, and needs to be
    after the declarations, so that C89 compilers compile it.
-----------------------------------------------------------------------

Summary of changes:
 vxs.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vxs.inc b/vxs.inc
index e297c38..2e4f409 100644
--- a/vxs.inc
+++ b/vxs.inc
@@ -171,12 +171,13 @@ VXS(version_new)
 {
     dVAR;
     dXSARGS;
-    PERL_UNUSED_VAR(cv);
     SV *vs = items ? ST(1) : &PL_sv_undef;
     SV *rv;
     const char * classname = "";
     STRLEN len;
     U32 flags = 0;
+    PERL_UNUSED_VAR(cv);
+
     SP -= items;
 
     if (items > 3 || items == 0)

--
Perl5 Master Repository

Reply via email to