In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/76e83594d2dcdafebec9fa1f382117ae098011f3?hp=533686c97e2bcc046e9f800c5a5501785c800c62>

- Log -----------------------------------------------------------------
commit 76e83594d2dcdafebec9fa1f382117ae098011f3
Author: James E Keenan <[email protected]>
Date:   Sat Jan 31 20:44:27 2015 -0500

    Reverse 'const static' to avoid 'old-style-declaration' warning.
-----------------------------------------------------------------------

Summary of changes:
 ext/Devel-Peek/Peek.pm | 2 +-
 ext/Devel-Peek/Peek.xs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ext/Devel-Peek/Peek.pm b/ext/Devel-Peek/Peek.pm
index f3adcfc..bbea3cd 100644
--- a/ext/Devel-Peek/Peek.pm
+++ b/ext/Devel-Peek/Peek.pm
@@ -3,7 +3,7 @@
 
 package Devel::Peek;
 
-$VERSION = '1.21';
+$VERSION = '1.22';
 $XS_VERSION = $VERSION;
 $VERSION = eval $VERSION;
 
diff --git a/ext/Devel-Peek/Peek.xs b/ext/Devel-Peek/Peek.xs
index 856ff77..132cad79 100644
--- a/ext/Devel-Peek/Peek.xs
+++ b/ext/Devel-Peek/Peek.xs
@@ -406,7 +406,7 @@ S_ck_dump(pTHX_ OP *entersubop, GV *namegv, SV *cv)
     return (OP *)newop;
 }
 
-const static XOP my_xop = {
+static const XOP my_xop = {
     XOPf_xop_name|XOPf_xop_desc|XOPf_xop_class,                /* xop_flags */
     "Devel_Peek_Dump",                                 /* xop_name */
     "Dump",                                            /* xop_desc */

--
Perl5 Master Repository

Reply via email to