Commit 04055200 by Jason Merrill Committed by Jason Merrill

* include/bits/ostream.tcc (operator<<(char*)): Add __s.

From-SVN: r124522
parent 3eb5f26f
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.
......
...@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment