diff options
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/27_io/howto.html | 2 |
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& input_file; }; extern std::ostream& operator<< (std::ostream&, MyClass&); |