diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2001-10-09 20:18:14 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2001-10-09 20:18:14 +0000 |
commit | 0435269a764312008a34152f04254fa5024fba72 (patch) | |
tree | 6be1c15ffbe632ffdbfcdc5ac2709faf05aa0cba /libstdc++-v3/docs/html/ext | |
parent | 0d47f0862930d2f12338968b00a514f45c23e367 (diff) | |
download | gcc-0435269a764312008a34152f04254fa5024fba72.zip gcc-0435269a764312008a34152f04254fa5024fba72.tar.gz gcc-0435269a764312008a34152f04254fa5024fba72.tar.bz2 |
configopts.html: More HTML->XHTML and lowercasing of tags.
2001-10-09 Phil Edwards <pme@gcc.gnu.org>
* docs/html/configopts.html: More HTML->XHTML and lowercasing of tags.
* docs/html/documentation.html: Likewise.
* docs/html/explanations.html: Likewise.
* docs/html/install.html: Likewise.
* docs/html/17_intro/howto.html: Likewise.
* docs/html/17_intro/license.html: Likewise. Tighten up language.
* docs/html/18_support/howto.html: Likewise.
* docs/html/19_diagnostics/howto.html: Likewise.
* docs/html/20_util/howto.html: Likewise.
* docs/html/21_strings/howto.html: Likewise.
* docs/html/22_locale/howto.html: Likewise.
* docs/html/23_containers/howto.html: Likewise.
* docs/html/24_iterators/howto.html: Likewise.
* docs/html/25_algorithms/howto.html: Likewise.
* docs/html/26_numerics/howto.html: Likewise.
* docs/html/27_io/howto.html: Likewise.
* docs/html/ext/howto.html: Likewise.
* docs/html/ext/sgiexts.html: Likewise.
* docs/html/faq/index.html: Likewise. Not so many absolute links.
* docs/html/faq/index.txt: Regenerate.
From-SVN: r46128
Diffstat (limited to 'libstdc++-v3/docs/html/ext')
-rw-r--r-- | libstdc++-v3/docs/html/ext/howto.html | 34 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/ext/sgiexts.html | 18 |
2 files changed, 26 insertions, 26 deletions
diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index 0252388..10e5c26 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -1,23 +1,23 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <html> <head> - <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> - <meta NAME="AUTHOR" CONTENT="pme@gcc.gnu.org (Phil Edwards)"> - <meta NAME="KEYWORDS" CONTENT="HOWTO, libstdc++, GCC, g++, libg++, STL"> - <meta NAME="DESCRIPTION" CONTENT="Notes for the libstdc++ extensions."> - <meta NAME="GENERATOR" CONTENT="vi and eight fingers"> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <meta name="AUTHOR" content="pme@gcc.gnu.org (Phil Edwards)"> + <meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL"> + <meta name="DESCRIPTION" content="Notes for the libstdc++ extensions."> + <meta name="GENERATOR" content="vi and eight fingers"> <title>libstdc++-v3 HOWTO: Extensions</title> -<link REL=StyleSheet HREF="../lib3styles.css"> +<link rel=StyleSheet href="../lib3styles.css"> </head> <body> -<h1 CLASS="centered"><a name="top">Extensions</a></h1> +<h1 class="centered"><a name="top">Extensions</a></h1> <p>Here we will make an attempt at describing the non-Standard extensions to the library. Some of these are from SGI's STL, some of these are GNU's, and some just seemed to appear on the doorstep. </p> -<p><B>Before you leap in and use these</B>, be aware of two things: +<p><strong>Before you leap in and use these</strong>, be aware of two things: <ol> <li>Non-Standard means exactly that. The behavior, and the very existence, of these extensions may change with little or no @@ -48,14 +48,14 @@ <h2><a name="1">Ropes and trees and hashes, oh my!</a></h2> <p>The SGI headers - <PRE> + <pre> <bvector> <hash_map> <hash_set> <rope> <slist> <tree> - </PRE> are all here; <code><bvector></code> exposes the old bit_vector + </pre> are all here; <code><bvector></code> exposes the old bit_vector class that was used before specialization of vector<bool> was available (it's actually a typedef for the specialization now). <code><hash_map></code> and <code><hash_set></code> @@ -87,17 +87,17 @@ </p> <p>Why would you want to use a hashing class instead of the "normal" implementations? Matt Austern writes: - <BLOCKQUOTE><em>[W]ith a well chosen hash function, hash tables + <blockquote><em>[W]ith a well chosen hash function, hash tables generally provide much better average-case performance than binary search trees, and much worse worst-case performance. So if your implementation has hash_map, if you don't mind using nonstandard components, and if you aren't scared about the possibility of pathological cases, you'll probably get better performance from - hash_map.</em></BLOCKQUOTE> + hash_map.</em></blockquote> </p> - <p>(Side note: for those of you wondering, <B>"Why wasn't a hash - table included in the Standard in the first #!$@ place?"</B> I'll - give a quick answer: it was proposed, but too late and in too + <p>(Side note: for those of you wondering, <strong>"Why wasn't a hash + table included in the Standard in the first #!$@ place?"</strong> + I'll give a quick answer: it was proposed, but too late and in too unorganized a fashion. Some sort of hashing will undoubtedly be included in a future Standard. </p> @@ -309,10 +309,10 @@ <!-- ####################################################### --> <hr> -<P CLASS="fineprint"><em> +<p class="fineprint"><em> See <a href="../17_intro/license.html">license.html</a> for copying conditions. Comments and suggestions are welcome, and may be sent to -<a href="mailto:libstdc++@gcc.gnu.org">the mailing list</a>. +<a href="mailto:libstdc++@gcc.gnu.org">the libstdc++ mailing list</a>. </em></p> diff --git a/libstdc++-v3/docs/html/ext/sgiexts.html b/libstdc++-v3/docs/html/ext/sgiexts.html index 12ed15c..bc54b35 100644 --- a/libstdc++-v3/docs/html/ext/sgiexts.html +++ b/libstdc++-v3/docs/html/ext/sgiexts.html @@ -1,16 +1,16 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <html> <head> - <meta NAME="AUTHOR" CONTENT="pme@gcc.gnu.org (Phil Edwards)"> - <meta NAME="KEYWORDS" CONTENT="libstdc++, libstdc++-v3, GCC, g++, STL, SGI"> - <meta NAME="DESCRIPTION" CONTENT="SGI extensions preserved in libstdc++-v3."> - <meta NAME="GENERATOR" CONTENT="vi and eight fingers"> + <meta name="AUTHOR" content="pme@gcc.gnu.org (Phil Edwards)"> + <meta name="KEYWORDS" content="libstdc++, libstdc++-v3, GCC, g++, STL, SGI"> + <meta name="DESCRIPTION" content="SGI extensions preserved in libstdc++-v3."> + <meta name="GENERATOR" content="vi and eight fingers"> <title>SGI extensions to the library in libstdc++-v3</title> -<link REL=StyleSheet HREF="lib3styles.css"> +<link rel=StyleSheet href="lib3styles.css"> </head> <body> -<h1 CLASS="centered"><a name="top">SGI extensions to the library in +<h1 class="centered"><a name="top">SGI extensions to the library in libstdc++-v3</a></h1> <p>This page describes the extensions that SGI made to their version of the @@ -25,7 +25,7 @@ libstdc++-v3</a></h1> for a description). Not every chapter may have extensions, and the extensions may come and go. Also, this page is incomplete because the author is pressed for time. Check back often; the latest change was on - $Date: 2001/09/27 00:48:00 $ (UTC). + $Date: 2001/10/04 20:03:22 $ (UTC). </p> <p>Descriptions range from the scanty to the verbose. You should also check @@ -223,10 +223,10 @@ libstdc++-v3</a></h1> <!-- ####################################################### --> <hr> -<P CLASS="fineprint"><em> +<p class="fineprint"><em> See <a href="../17_intro/license.html">license.html</a> for copying conditions. Comments and suggestions are welcome, and may be sent to -<a href="mailto:libstdc++@gcc.gnu.org">the mailing list</a>. +<a href="mailto:libstdc++@gcc.gnu.org">the libstdc++ mailing list</a>. </em></p> |