diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bd347e1ac1d..dbc49a43125 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2010-01-14 Paolo Carlini + + * include/c_std/cstring (memchr): Forward to the builtin. + * include/c_std/cstring: Remove redundant casts; use names consistent + with the letter of the Standard. + * include/c_global/cstring: Likewise. + 2010-01-13 Benjamin Kosnik * include/profile/iterator_tracker.h: Add copyright. diff --git a/libstdc++-v3/include/c_global/cstring b/libstdc++-v3/include/c_global/cstring index acd6166b15f..dba96c98127 100644 --- a/libstdc++-v3/include/c_global/cstring +++ b/libstdc++-v3/include/c_global/cstring @@ -1,7 +1,7 @@ // -*- C++ -*- forwarding header. // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -// 2006, 2007, 2008, 2009 +// 2006, 2007, 2008, 2009, 2010 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -98,24 +98,24 @@ _GLIBCXX_BEGIN_NAMESPACE(std) #ifndef __CORRECT_ISO_CPP_STRING_H_PROTO inline void* - memchr(void* __p, int __c, size_t __n) - { return memchr(const_cast(__p), __c, __n); } + memchr(void* __s, int __c, size_t __n) + { return __builtin_memchr(__s, __c, __n); } inline char* - strchr(char* __s1, int __n) - { return __builtin_strchr(const_cast(__s1), __n); } + strchr(char* __s, int __n) + { return __builtin_strchr(__s, __n); } inline char* strpbrk(char* __s1, const char* __s2) - { return __builtin_strpbrk(const_cast(__s1), __s2); } + { return __builtin_strpbrk(__s1, __s2); } inline char* - strrchr(char* __s1, int __n) - { return __builtin_strrchr(const_cast(__s1), __n); } + strrchr(char* __s, int __n) + { return __builtin_strrchr(__s, __n); } inline char* strstr(char* __s1, const char* __s2) - { return __builtin_strstr(const_cast(__s1), __s2); } + { return __builtin_strstr(__s1, __s2); } #endif _GLIBCXX_END_NAMESPACE diff --git a/libstdc++-v3/include/c_std/cstring b/libstdc++-v3/include/c_std/cstring index 63afe8c6a08..3535a249b3b 100644 --- a/libstdc++-v3/include/c_std/cstring +++ b/libstdc++-v3/include/c_std/cstring @@ -1,6 +1,7 @@ // -*- C++ -*- forwarding header. -// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2009 +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +// 2006, 2007, 2008, 2009, 2010 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -97,24 +98,24 @@ _GLIBCXX_BEGIN_NAMESPACE(std) #ifndef __CORRECT_ISO_CPP_STRING_H_PROTO inline void* - memchr(void* __p, int __c, size_t __n) - { return memchr(const_cast(__p), __c, __n); } + memchr(void* __s, int __c, size_t __n) + { return __builtin_memchr(__s, __c, __n); } inline char* - strchr(char* __s1, int __n) - { return __builtin_strchr(const_cast(__s1), __n); } + strchr(char* __s, int __n) + { return __builtin_strchr(__s, __n); } inline char* strpbrk(char* __s1, const char* __s2) - { return __builtin_strpbrk(const_cast(__s1), __s2); } + { return __builtin_strpbrk(__s1, __s2); } inline char* - strrchr(char* __s1, int __n) - { return __builtin_strrchr(const_cast(__s1), __n); } + strrchr(char* __s, int __n) + { return __builtin_strrchr(__s, __n); } inline char* strstr(char* __s1, const char* __s2) - { return __builtin_strstr(const_cast(__s1), __s2); } + { return __builtin_strstr(__s1, __s2); } #endif _GLIBCXX_END_NAMESPACE