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-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=abf513b5af5220f0029348e5702849e9a504a9e7;p=gcc.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 67a8a32d3ed..8b2755b77fe 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 e60c6710606..a9a3bbe3824 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&);