diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-07-08 09:51:54 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-07-08 09:51:54 +0000 |
commit | 51d9c5cdcfdc622d985a00ae6c0aedaf68e560c2 (patch) | |
tree | 74ce0d40ded3a3e38f84d95f4bfe96e591f55ba0 | |
parent | 1d4047e0380d0df08e9377878e430660557f9197 (diff) | |
download | gcc-51d9c5cdcfdc622d985a00ae6c0aedaf68e560c2.zip gcc-51d9c5cdcfdc622d985a00ae6c0aedaf68e560c2.tar.gz gcc-51d9c5cdcfdc622d985a00ae6c0aedaf68e560c2.tar.bz2 |
howto.html: Link to dk_std::vector paper and homepage.
2002-07-08 Phil Edwards <pme@gcc.gnu.org>
* docs/html/23_containers/howto.html: Link to dk_std::vector paper
and homepage.
From-SVN: r55322
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/23_containers/howto.html | 20 |
2 files changed, 25 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 874d673..dd89bfa 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-07-08 Phil Edwards <pme@gcc.gnu.org> + + * docs/html/23_containers/howto.html: Link to dk_std::vector paper + and homepage. + 2002-07-07 Paolo Carlini <pcarlini@unitus.it> PR libstdc++/7186 diff --git a/libstdc++-v3/docs/html/23_containers/howto.html b/libstdc++-v3/docs/html/23_containers/howto.html index 101b636..4ad7ac6 100644 --- a/libstdc++-v3/docs/html/23_containers/howto.html +++ b/libstdc++-v3/docs/html/23_containers/howto.html @@ -27,6 +27,7 @@ <li><a href="#4">"Hinting" during insertion</a> <li><a href="#5">Bitmasks and string arguments</a> <li><a href="#6"><code>std::list::size()</code> is O(n)!</a> + <li><a href="#7">Memory management for vectors</a> </ul> <hr> @@ -432,6 +433,25 @@ <a href="../faq/index.html">to the FAQ</a>. </p> +<hr> +<h2><a name="7">Memory management for vectors</h2> + <p>In + <a href="http://gcc.gnu.org/ml/libstdc++/2002-04/msg00105.html">this + message to the list</a>, Daniel Kostecky announced work on an + alternate form of <code>std::vector</code> that would support hints + about free store management. The design was also described, along + with possible implementation choices. + </p> + <p>The first alpha release was announced + <a href="http://gcc.gnu.org/ml/libstdc++/2002-07/msg00048.html">recently</a> + and the releases themselves are available at + <a href="http://www.kotelna.sk/dk/sw/caphint/"> + http://www.kotelna.sk/dk/sw/caphint/</a>. + </p> + <p>Return <a href="#top">to top of page</a> or + <a href="../faq/index.html">to the FAQ</a>. + </p> + <!-- ####################################################### --> |