Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
57945813
Commit
57945813
authored
Jul 20, 2004
by
Danny Smith
Committed by
Danny Smith
Jul 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/c_std/std_cwchar.h (wcsstr): Correct signature.
From-SVN: r84945
parent
fa0aee89
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/c_std/std_cwchar.h
+1
-1
No files found.
libstdc++-v3/ChangeLog
View file @
57945813
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
...
...
libstdc++-v3/include/c_std/std_cwchar.h
View file @
57945813
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment