diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2001-09-25 23:51:17 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2001-09-25 23:51:17 +0000 |
commit | 77cd227ec3a5338e6233523eb78b13643e095b61 (patch) | |
tree | 32c7ec2d3784a56111795e6e0326bdb210835190 /libstdc++-v3/docs/doxygen | |
parent | c176688132f1f85ad9d612a142e488ed436d0464 (diff) | |
download | gcc-77cd227ec3a5338e6233523eb78b13643e095b61.zip gcc-77cd227ec3a5338e6233523eb78b13643e095b61.tar.gz gcc-77cd227ec3a5338e6233523eb78b13643e095b61.tar.bz2 |
howto.html: Add anchor name.
2001-09-25 Phil Edwards <pme@gcc.gnu.org>
* docs/html/20_util/howto.html: Add anchor name.
* docs/html/23_containers/howto.html: Line wrapping, another link.
* docs/html/25_algorithms/howto.html: Another note.
* docs/html/ext/howto.html: Link to SGI extensions. List DRs and
link to them...
* docs/html/ext/lwg-active.html: ...in this new file (from R19),
* docs/html/ext/lwg-defects.html: and this new file (from R19).
* docs/html/ext/sgiexts.html: New file. Mention SGI extensions
carried over to libstdc++-v3.
* docs/html/faq/index.html: Link to SGI extensions. Mention the
"missing .." pseudobug.
* docs/html/faq/index.txt: Regenerate.
* include/bits/ios_base.h: DR-related comment cleanup.
* include/bits/istream.tcc: Likewise.
* include/bits/locale_facets.h: Likewise.
* include/bits/locale_facets.tcc: Likewise.
* include/bits/ostream.tcc: Likewise.
* include/bits/std_bitset.h: Likewise.
* include/bits/std_iosfwd.h: Likewise.
* include/bits/std_istream.h: Likewise.
* include/bits/std_ostream.h: Likewise.
* include/bits/std_streambuf.h: Likewise.
* include/bits/stl_pair.h: Likewise.
* include/bits/streambuf_iterator.h: Likewise.
* include/bits/std_map.h: Remove unused header inclusion guard
_CPP_BITS_STL_TREE_H from around bits/stl_tree.h.
* include/bits/std_set.h: Likewise.
* include/bits/stl_function.h: Doxygen markup.
* docs/doxygen/doxygroups.cc: New file, specifying module grouping.
* libsupc++/typeinfo: Doxygen markup tweak.
From-SVN: r45816
Diffstat (limited to 'libstdc++-v3/docs/doxygen')
-rw-r--r-- | libstdc++-v3/docs/doxygen/doxygroups.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libstdc++-v3/docs/doxygen/doxygroups.cc b/libstdc++-v3/docs/doxygen/doxygroups.cc new file mode 100644 index 0000000..b74bab1 --- /dev/null +++ b/libstdc++-v3/docs/doxygen/doxygroups.cc @@ -0,0 +1,24 @@ + +// This just provides documentation for stuff that doesn't need to be in the +// source headers themselves. It is a ".cc" file for the sole cheesy reason +// that it triggers many different text editors into doing Nice Things when +// typing comments. However, it is mentioned nowhere except the *cfg.in files. + +/** @addtogroup SGIextensions + * + * Because libstdc++-v3 based its implementation of the STL subsections of + * the library on the SGI 3.3 implementation, we inherited their extensions + * as well. + * + * They are additionally documented in the + * <a href="http://gcc.gnu.org/onlinedocs/libstdc++/documentation.html"> + * online documentation</a>, a copy of which is also shipped with the + * library source code (in .../docs/html/documentation.html). You can also + * read the documentation <a href="http://www.sgi.com/tech/stl/">on SGI's + * site</a>, which is still running even though the code is not maintained. + * + * <strong>NB</strong> that the following notes are pulled from various + * comments all over the place, so they may seem stilted. + * <hr> +*/ + |