From: Jonathan Wakely Date: Thu, 8 May 2014 19:39:38 +0000 (+0100) Subject: iostream: Fix URL in comment. X-Git-Tag: releases/gcc-4.8.3~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67ee10f237d2faa9b05e9cdfb3880c96378c1454;p=thirdparty%2Fgcc.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: r210238 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c06f9c7a2dc7..3d1f7679e515 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2014-05-08 Jonathan Wakely + + * include/std/iostream: Fix URL in comment. + * src/c++98/ios_init.cc: Fix path in comment. + 2014-05-06 Jonathan Wakely Backport from mainline diff --git a/libstdc++-v3/include/std/iostream b/libstdc++-v3/include/std/iostream index 7864749a7f3b..0c3019e07820 100644 --- a/libstdc++-v3/include/std/iostream +++ b/libstdc++-v3/include/std/iostream @@ -48,13 +48,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * * The <iostream> header declares the eight standard stream * objects. 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 * * They are required by default to cooperate with the global C * library's @c FILE streams, and to be available during program - * startup and termination. For more information, see the HOWTO - * linked to above. + * startup and termination. For more information, see the section of the + * manual linked to above. */ //@{ extern istream cin; /// Linked to standard input diff --git a/libstdc++-v3/src/c++98/ios_init.cc b/libstdc++-v3/src/c++98/ios_init.cc index 16a10f6e83ef..36ac924dad52 100644 --- a/libstdc++-v3/src/c++98/ios_init.cc +++ b/libstdc++-v3/src/c++98/ios_init.cc @@ -37,7 +37,7 @@ namespace __gnu_internal _GLIBCXX_VISIBILITY(hidden) { 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 buf_cout_sync; extern stdio_sync_filebuf buf_cin_sync; extern stdio_sync_filebuf buf_cerr_sync;