diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-01 22:57:59 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-01 22:57:59 +0000 |
commit | 81e11199c3b4602044623372344571997dfdd72c (patch) | |
tree | 921bb6c536974b82a62c20a56ca6bfd90f5d4d8c /libstdc++-v3/docs/html/ext | |
parent | 504f2825cade45dbdc8cf486e7a251a6a733baf8 (diff) | |
download | gcc-81e11199c3b4602044623372344571997dfdd72c.tar.gz |
2002-05-01 Phil Edwards <pme@gcc.gnu.org>
* include/std/std_bitset.h: Fix doxygen comments.
* docs/html/documentation.html: Minor tweaks for 3.1.
* docs/html/27_io/howto.html: Likewise.
* docs/html/ext/howto.html: Likewise, mention stdio_filebuf.
* docs/html/faq/index.html: Likewise.
* docs/html/faq/index.txt: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53025 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/docs/html/ext')
-rw-r--r-- | libstdc++-v3/docs/html/ext/howto.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index b883445de0b..cbea1f58395 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -119,7 +119,7 @@ <a href="sgiexts.html">their own page</a>. Since the SGI STL is no longer actively maintained, we will try and keep this code working ourselves.</li> - <li><code>filebuf</code>s have another ctor with this signature:<br> + <li>3.0.x <code>filebuf</code>s have another ctor with this signature:<br> <code>basic_filebuf(__c_file_type*, ios_base::openmode, int_type);</code> <br>This comes in very handy in a number of places, such as attaching Unix sockets, pipes, and anything else which uses file @@ -143,6 +143,10 @@ library cannot track what you do on your own with a file descriptor, so if you perform any I/O directly, don't expect the library to be aware of it. + <li>Beginning with 3.1, the extra <code>filebuf</code> constructor and + the <code>fd()</code> function were removed from the standard + filebuf. Instead, <code><ext/stdio_filebuf.h></code> contains + a derived class called <code>__gnu_cxx::stdio_filebuf</code>. </ul> </p> <p>Return <a href="#top">to top of page</a> or @@ -226,7 +230,7 @@ (If you decide to be unportable, then you're free do do what you want, but it's not our fault if stuff breaks.) They are presented here for information for maintainers and contributors in addition to users, but - we will probably make them available for users in 3.1 somehow. + we will probably make them available for users in 3.2 somehow. </p> <p>These classes are always available: <ul> |