mirror of git://gcc.gnu.org/git/gcc.git
iostream: Fix URL in comment.
* include/std/iostream: Fix URL in comment. * src/c++98/ios_init.cc: Fix path in comment. From-SVN: r210232
This commit is contained in:
parent
2735097a55
commit
07e4f10aa6
|
|
@ -14,6 +14,9 @@
|
||||||
PR libstdc++/13860
|
PR libstdc++/13860
|
||||||
* include/std/fstream (basic_filebuf): Enforce requirements on traits.
|
* include/std/fstream (basic_filebuf): Enforce requirements on traits.
|
||||||
|
|
||||||
|
* include/std/iostream: Fix URL in comment.
|
||||||
|
* src/c++98/ios_init.cc: Fix path in comment.
|
||||||
|
|
||||||
2014-05-08 Paolo Carlini <paolo.carlini@oracle.com>
|
2014-05-08 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
* acinclude.m4 ([GLIBCXX_ENABLE_C99]): Avoid -Wwrite-strings warning.
|
* acinclude.m4 ([GLIBCXX_ENABLE_C99]): Avoid -Wwrite-strings warning.
|
||||||
|
|
|
||||||
|
|
@ -48,13 +48,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||||
*
|
*
|
||||||
* The <iostream> header declares the eight <em>standard stream
|
* The <iostream> header declares the eight <em>standard stream
|
||||||
* objects</em>. For other declarations, see
|
* objects</em>. For other declarations, see
|
||||||
* http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch24.html
|
* http://gcc.gnu.org/onlinedocs/libstdc++/manual/io.html
|
||||||
* and the @link iosfwd I/O forward declarations @endlink
|
* and the @link iosfwd I/O forward declarations @endlink
|
||||||
*
|
*
|
||||||
* They are required by default to cooperate with the global C
|
* They are required by default to cooperate with the global C
|
||||||
* library's @c FILE streams, and to be available during program
|
* library's @c FILE streams, and to be available during program
|
||||||
* startup and termination. For more information, see the HOWTO
|
* startup and termination. For more information, see the section of the
|
||||||
* linked to above.
|
* manual linked to above.
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
extern istream cin; /// Linked to standard input
|
extern istream cin; /// Linked to standard input
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ namespace __gnu_internal _GLIBCXX_VISIBILITY(hidden)
|
||||||
{
|
{
|
||||||
using namespace __gnu_cxx;
|
using namespace __gnu_cxx;
|
||||||
|
|
||||||
// Extern declarations for global objects in src/globals.cc.
|
// Extern declarations for global objects in src/c++98/globals.cc.
|
||||||
extern stdio_sync_filebuf<char> buf_cout_sync;
|
extern stdio_sync_filebuf<char> buf_cout_sync;
|
||||||
extern stdio_sync_filebuf<char> buf_cin_sync;
|
extern stdio_sync_filebuf<char> buf_cin_sync;
|
||||||
extern stdio_sync_filebuf<char> buf_cerr_sync;
|
extern stdio_sync_filebuf<char> buf_cerr_sync;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue