Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82644 - in sandbox/varray/doc/html: . varray
From: adam.wulkiewicz_at_[hidden]
Date: 2013-01-27 13:41:00


Author: awulkiew
Date: 2013-01-27 13:40:59 EST (Sun, 27 Jan 2013)
New Revision: 82644
URL: http://svn.boost.org/trac/boost/changeset/82644

Log:
varray docs updated.
Text files modified:
   sandbox/varray/doc/html/index.html | 2 +-
   sandbox/varray/doc/html/varray/introduction.html | 5 ++---
   sandbox/varray/doc/html/varray/reference.html | 2 +-
   3 files changed, 4 insertions(+), 5 deletions(-)

Modified: sandbox/varray/doc/html/index.html
==============================================================================
--- sandbox/varray/doc/html/index.html (original)
+++ sandbox/varray/doc/html/index.html 2013-01-27 13:40:59 EST (Sun, 27 Jan 2013)
@@ -51,7 +51,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: January 27, 2013 at 18:31:45 GMT</small></p></td>
+<td align="left"><p><small>Last revised: January 27, 2013 at 18:39:54 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: sandbox/varray/doc/html/varray/introduction.html
==============================================================================
--- sandbox/varray/doc/html/varray/introduction.html (original)
+++ sandbox/varray/doc/html/varray/introduction.html 2013-01-27 13:40:59 EST (Sun, 27 Jan 2013)
@@ -61,11 +61,10 @@
   <span class="identifier">three</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">2</span><span class="special">);</span> <span class="comment">// size: 2</span>
   <span class="identifier">three</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">3</span><span class="special">);</span> <span class="comment">// size: 3</span>
 
- <span class="comment">//three.reserve(4); // no effect, fixed capacity: 3</span>
- <span class="comment">//three.push_back(3); // size: 4, behavior depends on strategy, assert by default</span>
+ <span class="comment">//three.reserve(4); // assert/no effect, fixed capacity: 3</span>
+ <span class="comment">//three.push_back(3); // assert/undefined behavior, fixed capacity: 3</span>
 
   <span class="identifier">three</span><span class="special">.</span><span class="identifier">pop_back</span><span class="special">();</span> <span class="comment">// size: 2</span>
- <span class="identifier">three</span><span class="special">.</span><span class="identifier">shrink_to_fit</span><span class="special">();</span> <span class="comment">// no effect, fixed capacity: 3</span>
 
   <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span>
 <span class="special">}</span>

Modified: sandbox/varray/doc/html/varray/reference.html
==============================================================================
--- sandbox/varray/doc/html/varray/reference.html (original)
+++ sandbox/varray/doc/html/varray/reference.html 2013-01-27 13:40:59 EST (Sun, 27 Jan 2013)
@@ -35,7 +35,7 @@
 <a name="staticvector.reference.boost_container_varray"></a><a name="classboost_1_1container_1_1varray"></a><a class="link" href="reference.html#staticvector.reference.boost_container_varray" title="boost::container::varray">boost::container::varray</a>
 </h3></div></div></div>
 <p>
- <a class="indexterm" name="id892477"></a><a class="indexterm" name="id892482"></a><a class="indexterm" name="id892487"></a>
+ <a class="indexterm" name="id880443"></a><a class="indexterm" name="id880448"></a><a class="indexterm" name="id880452"></a>
 A variable-size array container with fixed capacity.
       </p>
 <h5>


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