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
04055200
Commit
04055200
authored
May 07, 2007
by
Jason Merrill
Committed by
Jason Merrill
May 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/bits/ostream.tcc (operator<<(char*)): Add __s.
From-SVN: r124522
parent
3eb5f26f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
libstdc++-v3/ChangeLog
+2
-0
libstdc++-v3/include/bits/ostream.tcc
+4
-4
No files found.
libstdc++-v3/ChangeLog
View file @
04055200
2007-05-07 Jason Merrill <jason@redhat.com>
2007-05-07 Jason Merrill <jason@redhat.com>
* include/bits/ostream.tcc (operator<<(char*)): Add __s.
* config/abi/pre/gnu.ver: Fix symbol versions.
* config/abi/pre/gnu.ver: Fix symbol versions.
* config/abi/pre/gnu-versioned-namespace.ver: Likewise.
* config/abi/pre/gnu-versioned-namespace.ver: Likewise.
...
...
libstdc++-v3/include/bits/ostream.tcc
View file @
04055200
...
@@ -336,10 +336,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
...
@@ -336,10 +336,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
{
{
struct __ptr_guard
struct __ptr_guard
{
{
_CharT *p;
_CharT *
__
p;
__ptr_guard (_CharT *
ip): p(
ip) { }
__ptr_guard (_CharT *
__ip): __p(__
ip) { }
~__ptr_guard() { delete[] p; }
~__ptr_guard() { delete[]
__
p; }
_CharT* __get() { return p; }
_CharT* __get() { return
__
p; }
} __pg (new _CharT[__clen]);
} __pg (new _CharT[__clen]);
_CharT *__ws = __pg.__get();
_CharT *__ws = __pg.__get();
...
...
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