This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Fix std::strchr etc. prototypes for C++
On Fri, Jan 30, 2009 at 12:04:09PM +0100, Paolo Carlini wrote:
> Jakub, can you please update Bugzilla consistently with your work?
Both the bugs you've mentioned, at least in my understanding, talk
about the fact that <cstring> etc. shouldn't inject stuff into
global namespace, and that's something the committed gcc/glibc patch
doesn't change anything about. All it changes is that now
strchr with first argument const char * (and similarly for many other
functions) returns const char*, not char *, both in the global and std
namespaces.
Jakub