diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-18 22:48:29 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-18 22:48:29 +0000 |
commit | 229da0b39387745a2a4a816891fe6098779d0bd6 (patch) | |
tree | ca3a5b7643f3ac8403c983ebc0405ad928bd816f /libstdc++-v3 | |
parent | d1bc0659b7e57c1422888f0d3e48dc9fcae66015 (diff) | |
download | gcc-229da0b39387745a2a4a816891fe6098779d0bd6.tar.gz |
2007-09-17 Benjamin Kosnik <bkoz@redhat.com>
Chalathip Thumkanon <chalathip@gmail.com>
* docs/html/ext/pb_ds/hash_based_containers.html: Correct.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/ext/pb_ds/hash_based_containers.html | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d8e8666d7f4..345bd19e28f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,4 +1,9 @@ 2007-09-17 Benjamin Kosnik <bkoz@redhat.com> + Chalathip Thumkanon <chalathip@gmail.com> + + * docs/html/ext/pb_ds/hash_based_containers.html: Correct. + +2007-09-17 Benjamin Kosnik <bkoz@redhat.com> * configure.host: Set atomic_flags on i486. diff --git a/libstdc++-v3/docs/html/ext/pb_ds/hash_based_containers.html b/libstdc++-v3/docs/html/ext/pb_ds/hash_based_containers.html index fed7a4869d0..21d092a76ef 100644 --- a/libstdc++-v3/docs/html/ext/pb_ds/hash_based_containers.html +++ b/libstdc++-v3/docs/html/ext/pb_ds/hash_based_containers.html @@ -279,7 +279,7 @@ prohibitively expensive. A possible alternative might be to use only the first <i>k</i> characters of the string, where</p> - <p>k <sup>|S|</sup> ≥ m ,</p> + <p>|S|<sup>k</sup> ≥ m ,</p> <p><i>i.e.</i>, using the hash function</p> @@ -379,8 +379,8 @@ <p><a href= "gp_hash_table.html"></a><tt>gp_hash_table</tt> is parametrized by <tt>Hash_Fn</tt>, <tt>Probe_Fn</tt>, and - <tt>Comb_Probe_Fn</tt>. As before, if <tt>Probe_Fn</tt> and - <tt>Comb_Probe_Fn</tt> are, respectively, <a href= + <tt>Comb_Probe_Fn</tt>. As before, if <tt>Hash_Fn</tt> and + <tt>Probe_Fn</tt> are, respectively, <a href= "null_hash_fn.html"><tt>null_hash_fn</tt></a> and <a href= "null_probe_fn.html"><tt>null_probe_fn</tt></a>, then <tt>Comb_Probe_Fn</tt> is a ranged-probe functor. Otherwise, |