OSDN Git Service

2005-10-12 Joe Buck <Joe.Buck@synopsys.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Oct 2005 04:15:44 +0000 (04:15 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Oct 2005 04:15:44 +0000 (04:15 +0000)
* docs/html/27_io/howto.html: Use reference to ifstream when
including iosfwd.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105356 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 67a8a32..8b2755b 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 e60c671..a9a3bbe 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;);