[prev in list] [next in list] [prev in thread] [next in thread] 

List:       perl5-changes
Subject:    [perl.git]  branch tonyc/c++-literal, updated. v5.19.7-304-g08010a4
From:       "Tony Cook" <tony () develop-help ! com>
Date:       2014-01-16 2:53:38
Message-ID: E1W3d5O-0006SE-Tj () camel ! ams6 ! corp ! booking ! com
[Download RAW message or body]

In perl.git, the branch tonyc/c++-literal has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/08010a45bbc65908876eb43490c907d9720cfaa2?hp=61608bb78702625b199caa5a6e160f5c0a034184>


- Log -----------------------------------------------------------------
commit 08010a45bbc65908876eb43490c907d9720cfaa2
Author: Tony Cook <tony@develop-help.com>
Date:   Thu Jan 16 13:52:07 2014 +1100

    [perl #120670] avoid syntax disallowed by C++11
-----------------------------------------------------------------------

Summary of changes:
 cpan/Devel-PPPort/parts/inc/pv_tools | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpan/Devel-PPPort/parts/inc/pv_tools \
b/cpan/Devel-PPPort/parts/inc/pv_tools index a8a477f..41a4907 100644
--- a/cpan/Devel-PPPort/parts/inc/pv_tools
+++ b/cpan/Devel-PPPort/parts/inc/pv_tools
@@ -80,10 +80,10 @@ pv_escape(pTHX_ SV *dsv, char const * const str,
         if (u > 255 || (flags & PERL_PV_ESCAPE_ALL)) {
             if (flags & PERL_PV_ESCAPE_FIRSTCHAR)
                 chsize = my_snprintf(octbuf, sizeof octbuf,
-                                      "%"UVxf, u);
+                                      "%" UVxf, u);
             else
                 chsize = my_snprintf(octbuf, sizeof octbuf,
-                                      "%cx{%"UVxf"}", esc, u);
+                                      "%cx{%" UVxf "}", esc, u);
         } else if (flags & PERL_PV_ESCAPE_NOBACKSLASH) {
             chsize = 1;
         } else {

--
Perl5 Master Repository


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic