]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
howto.html: Use reference to ifstream when including iosfwd.
authorJoe Buck <Joe.Buck@synopsys.com>
Thu, 13 Oct 2005 04:15:44 +0000 (04:15 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Thu, 13 Oct 2005 04:15:44 +0000 (04:15 +0000)
2005-10-12  Joe Buck  <Joe.Buck@synopsys.com>

* docs/html/27_io/howto.html: Use reference to ifstream when
including iosfwd.

From-SVN: r105356

libstdc++-v3/ChangeLog
libstdc++-v3/docs/html/27_io/howto.html

index 67a8a32d3ed1466e5f9a2387a6df33554dcca877..8b2755b77fe3a3431339436696daafa747475f4f 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-12  Joe Buck  <Joe.Buck@synopsys.com>
+
+       * docs/html/27_io/howto.html: Use reference to ifstream when
+       including iosfwd.
+
 2005-10-11  Andrew Pinski  <pinskia@physics.uc.edu>
 
        PR libstdc++/23926
index e60c6710606174b684d2e4208839530caaef4d79..a9a3bbe3824b721802be2cc06970a3f76da110d3 100644 (file)
     class MyClass
     {
         ....
-        std::ifstream   input_file;
+        std::ifstream&amp;   input_file;
     };
 
     extern std::ostream&amp; operator&lt;&lt; (std::ostream&amp;, MyClass&amp;);