This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-200-g458d633


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  458d6339b79030a285d3091d3c29b7be2403bad6 (commit)
      from  2bf499708daebd9ebb59a6d938a372c7f0ca4dce (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=458d6339b79030a285d3091d3c29b7be2403bad6

commit 458d6339b79030a285d3091d3c29b7be2403bad6
Author: Adhemerval Zanella <adhemerval.zanella@linaro.com>
Date:   Thu Sep 29 12:02:16 2016 -0700

    Remove C++ style comments from string3.h
    
    The new check-installed-headers rule check now complains with C++
    comment from string3.h with:
    
    ../string/bits/string3.h:129:1: error: C++ style comments are not allowed in ISO C90
     // XXX We have no corresponding builtin yet.
    
    Let use old C style comment to make compiler happy in old modes.
    
    Tested on x86_64.
    
    	* string/bits/string3.h: Remove C++ style comments.

diff --git a/ChangeLog b/ChangeLog
index 9b0bff1..d922c8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-09-29  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* string/bits/string3.h: Remove C++ style comments.
+
 2016-09-29  Siddhesh Poyarekar  <siddhesh@sourceware.org>
 
 	* sysdeps/ieee754/dbl-64/s_sin.c (do_sincos_1): Use copysign
diff --git a/string/bits/string3.h b/string/bits/string3.h
index dd8db68..8f13b65 100644
--- a/string/bits/string3.h
+++ b/string/bits/string3.h
@@ -126,7 +126,7 @@ __NTH (strncpy (char *__restrict __dest, const char *__restrict __src,
   return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest));
 }
 
-// XXX We have no corresponding builtin yet.
+/* XXX We have no corresponding builtin yet.  */
 extern char *__stpncpy_chk (char *__dest, const char *__src, size_t __n,
 			    size_t __destlen) __THROW;
 extern char *__REDIRECT_NTH (__stpncpy_alias, (char *__dest, const char *__src,

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |    4 ++++
 string/bits/string3.h |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]