* include/c_std/std_cwchar.h (wcsstr): Correct signature.
From-SVN: r84945
This commit is contained in:
parent
fa0aee8996
commit
5794581363
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
2004-07-19 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
PR libstdc++/15488
|
PR libstdc++/15488
|
||||||
|
|
|
@ -223,7 +223,7 @@ namespace std
|
||||||
using ::wcsstr;
|
using ::wcsstr;
|
||||||
|
|
||||||
inline wchar_t*
|
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); }
|
{ return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
|
||||||
|
|
||||||
using ::wmemchr;
|
using ::wmemchr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue