* include/c_std/std_cwchar.h (wcsstr): Correct signature.

From-SVN: r84945
This commit is contained in:
Danny Smith 2004-07-20 08:47:42 +00:00 committed by Danny Smith
parent fa0aee8996
commit 5794581363
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-07-20 Danny Smith <dannysmith@users.sourceforge.net>
* include/c_std/std_cwchar.h (wcsstr): Correct signature.
2004-07-19 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/15488

View File

@ -223,7 +223,7 @@ namespace std
using ::wcsstr;
inline wchar_t*
wcsstr(wchar_t* __s1, wchar_t* __s2)
wcsstr(wchar_t* __s1, const wchar_t* __s2)
{ return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
using ::wmemchr;