Update of /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4706/libs/circular_buffer/doc
Modified Files:
circular_buffer.html
Log Message:
Fixed and improved debug support.
Index: circular_buffer.html
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/circular_buffer.html,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- circular_buffer.html 18 Feb 2007 23:03:26 -0000 1.61
+++ circular_buffer.html 26 Feb 2007 22:37:09 -0000 1.62
@@ -2367,7 +2367,7 @@
<b>Returns:</b>
</dt>
<dd>
- A const reference to the element at the <code>index</code> position.
+ A reference to the element at the <code>index</code> position.
</dd>
</dl>
<dl>
@@ -3607,7 +3607,8 @@
<b>Iterator Invalidation:</b>
</dt>
<dd>
- Invalidates all iterators pointing to the <code>circular_buffer</code>.
+ Invalidates all iterators pointing to the <code>circular_buffer</code> if the new capacity is different
+ from the original.
</dd>
</dl>
<dl>
@@ -3710,7 +3711,8 @@
<b>Iterator Invalidation:</b>
</dt>
<dd>
- Invalidates all iterators pointing to the <code>circular_buffer</code>.
+ Invalidates all iterators pointing to the <code>circular_buffer</code> if the new size is different
+ from the original.
</dd>
</dl>
<dl>
@@ -3795,7 +3797,8 @@
<b>Iterator Invalidation:</b>
</dt>
<dd>
- Invalidates all iterators pointing to the <code>circular_buffer</code>.
+ Invalidates all iterators pointing to the <code>circular_buffer</code> if the new capacity is different
+ from the original.
</dd>
</dl>
<dl>
@@ -3898,7 +3901,8 @@
<b>Iterator Invalidation:</b>
</dt>
<dd>
- Invalidates all iterators pointing to the <code>circular_buffer</code>.
+ Invalidates all iterators pointing to the <code>circular_buffer</code> if the new size is different
+ from the original.
</dd>
</dl>
<dl>
@@ -5697,7 +5701,8 @@
<b>Effect:</b>
</dt>
<dd>
- The elements from the range <code>[first, last)</code> are removed.
+ The elements from the range <code>[first, last)</code> are removed. (If <code>first == last</code>
+ nothing is removed.)
</dd>
</dl>
<dl>
|