howto.html: Update URL for SGI STL docs.

2003-07-16  Jonathan Wakely  <redi@gcc.gnu.org>

	* docs/html/ext/howto.html: Update URL for SGI STL docs.
	* docs/html/faq/index.html: Same.
	* docs/html/faq/index.txt: Regenerate.

From-SVN: r69463
This commit is contained in:
Jonathan Wakely 2003-07-16 18:06:36 +01:00
parent 1e0343ddbb
commit dced0d12fb
4 changed files with 128 additions and 122 deletions

View File

@ -1,3 +1,9 @@
2003-07-16 Jonathan Wakely <redi@gcc.gnu.org>
* docs/html/ext/howto.html: Update URL for SGI STL docs.
* docs/html/faq/index.html: Same.
* docs/html/faq/index.txt: Regenerate.
2003-07-16 Paolo Carlini <pcarlini@unitus.it>
PR libstdc++/11528

View File

@ -79,12 +79,12 @@
</p>
<p>Each of the associative containers map, multimap, set, and multiset
have a counterpart which uses a
<a href="http://www.sgi.com/Technology/STL/HashFunction.html">hashing
<a href="http://www.sgi.com/tech/stl/HashFunction.html">hashing
function</a> to do the arranging, instead of a strict weak ordering
function. The classes take as one of their template parameters a
function object that will return the hash value; by default, an
instantiation of
<a href="http://www.sgi.com/Technology/STL/hash.html">hash</a>.
<a href="http://www.sgi.com/tech/stl/hash.html">hash</a>.
You should specialize this functor for your class, or define your own,
before trying to use one of the hashing classes.
</p>

View File

@ -868,7 +868,7 @@ http://clisp.cons.org/~haible/gccinclude-glibc-2.2-compat.diff
<hr />
<h2><a name="5_3">5.3 What about the STL from SGI?</a></h2>
<p>The <a href="http://www.sgi.com/Technology/STL/">STL from SGI</a>,
<p>The <a href="http://www.sgi.com/tech/stl/">STL from SGI</a>,
version 3.3, was the most recent merge of the STL codebase. The
code in libstdc++ contains many fixes and changes, and it is
very likely that the SGI code is no longer under active

View File

@ -981,7 +981,7 @@ References
97. ../ext/howto.html#5
98. http://gcc.gnu.org/ml/libstdc++/1999/msg00080.html
99. http://gcc.gnu.org/ml/libstdc++/1999/msg00084.html
100. http://www.sgi.com/Technology/STL/
100. http://www.sgi.com/tech/stl/
101. ../ext/howto.html
102. ../17_intro/howto.html#3
103. ../23_containers/howto.html#3