From: Joe Buck Date: Thu, 13 Oct 2005 04:15:44 +0000 (+0000) Subject: howto.html: Use reference to ifstream when including iosfwd. X-Git-Tag: misc/cutover-cvs2svn~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abf513b5af5220f0029348e5702849e9a504a9e7;p=thirdparty%2Fgcc.git howto.html: Use reference to ifstream when including iosfwd. 2005-10-12 Joe Buck * docs/html/27_io/howto.html: Use reference to ifstream when including iosfwd. From-SVN: r105356 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 67a8a32d3ed1..8b2755b77fe3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-10-12 Joe Buck + + * docs/html/27_io/howto.html: Use reference to ifstream when + including iosfwd. + 2005-10-11 Andrew Pinski PR libstdc++/23926 diff --git a/libstdc++-v3/docs/html/27_io/howto.html b/libstdc++-v3/docs/html/27_io/howto.html index e60c67106061..a9a3bbe3824b 100644 --- a/libstdc++-v3/docs/html/27_io/howto.html +++ b/libstdc++-v3/docs/html/27_io/howto.html @@ -596,7 +596,7 @@ class MyClass { .... - std::ifstream input_file; + std::ifstream& input_file; }; extern std::ostream& operator<< (std::ostream&, MyClass&);