|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r53885 - sandbox/monotonic/libs/monotonic/doc
From: christian.schladetsch_at_[hidden]
Date: 2009-06-13 22:05:37
Author: cschladetsch
Date: 2009-06-13 22:05:36 EDT (Sat, 13 Jun 2009)
New Revision: 53885
URL: http://svn.boost.org/trac/boost/changeset/53885
Log:
gah VS is a terrible HTML editor!
OK, this is ridiculous. VisualStudio insists on corrupting the HTML at random times.
Text files modified:
sandbox/monotonic/libs/monotonic/doc/index.html | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
Modified: sandbox/monotonic/libs/monotonic/doc/index.html
==============================================================================
--- sandbox/monotonic/libs/monotonic/doc/index.html (original)
+++ sandbox/monotonic/libs/monotonic/doc/index.html 2009-06-13 22:05:36 EDT (Sat, 13 Jun 2009)
@@ -188,8 +188,8 @@
<p>
The following container wrappers are, currently and precipitously, part of this proposal: </p>
<ul>
- <li>boost::monotonic::list<T> ; </li>
- <li>boost::monotonic::vector<T> </li>
+ <li>bboost::monotonic::list<T></li>
+ <li>boost::monotonic::vector<T> /li>
<li>boost::monotonic::map<K,T> </li>
<li>boost::monotonic::multi_map<K,T> </li>
<li>boost::monotonic::set<T> </li>
@@ -207,14 +207,15 @@
<p>
It has been strongly suggested that these convenience structures be removed from
the proposal. For comparison, in the following Vector and Map are two exactly equivalent types:</p>
- <pre>typedef boost::monotonic::vector<int> Vector;r;
+ <pre>ttypedef boost::monotonic::vector<int> Vector;
typedef std::vector<int, boost::monotonic::allocator<int> > Vector;</pre>
- <pre>typedef boost::monotonic::map<int, boost::monotonic::list<int> > Map;typedef std::map<int, std::list<int, boost::monotonic::allocator<int> >, std::less<int>, boost::monotonic::allocator<int> > Map;</pre>
+ <pre>typedef boost::monotonic::map<int, boost::monotonic::list<int> > Map;
+typedef std::map<int, std::list<int, boost::monotonic::allocator<int> >, std::less<int>, boost::monotonic::allocator<int> > Map;</pre>
<p>
The container-wrappers currently remain part of the proposal, but this may well
change. In the meantime, the user is quite capable of using either method.</p>
<h2 id="ExampleUsage">
- Memory Fragmentation</h2>
+ Memory Fragmentation/h2>
<p>
The proposed system can be used to reduce memory fragmentation, or remove it
completely. For example:</p>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk