aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Buck <Joe.Buck@synopsys.com>2005-10-13 04:15:44 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2005-10-13 04:15:44 +0000
commitabf513b5af5220f0029348e5702849e9a504a9e7 (patch)
tree73bda4fb3b7a787932a8e25ac0cd66f6f6ba3db7
parent48f99ad6226d2a7f3c3fd348bd6e9f15d250e880 (diff)
downloadgcc-abf513b5af5220f0029348e5702849e9a504a9e7.zip
gcc-abf513b5af5220f0029348e5702849e9a504a9e7.tar.gz
gcc-abf513b5af5220f0029348e5702849e9a504a9e7.tar.bz2
howto.html: Use reference to ifstream when including iosfwd.
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
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/docs/html/27_io/howto.html2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 67a8a32..8b2755b 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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
diff --git a/libstdc++-v3/docs/html/27_io/howto.html b/libstdc++-v3/docs/html/27_io/howto.html
index e60c671..a9a3bbe 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&amp; input_file;
};
extern std::ostream&amp; operator&lt;&lt; (std::ostream&amp;, MyClass&amp;);