summaryrefslogtreecommitdiff
path: root/doc/html/circular_buffer/implementation.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/circular_buffer/implementation.html')
-rw-r--r--doc/html/circular_buffer/implementation.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/circular_buffer/implementation.html b/doc/html/circular_buffer/implementation.html
index 6d9dff38f4..0993d946cf 100644
--- a/doc/html/circular_buffer/implementation.html
+++ b/doc/html/circular_buffer/implementation.html
@@ -146,13 +146,13 @@
</ul></div>
<p>
It is considered to be a bug to read or remove an element (e.g. by calling
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30151952-bb">front()</a></code> or
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30626384-bb">pop_back()</a></code>)
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp36940624-bb">front()</a></code> or
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37415056-bb">pop_back()</a></code>)
from an empty std container and from an empty <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>
as well. The data consumer has to test if the container is not empty before
- reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30324160-bb">empty()</a></code>.
+ reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37112832-bb">empty()</a></code>.
However, when reading from the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>,
- there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30130640-bb">at()</a></code>
+ there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp36919312-bb">at()</a></code>
method which throws an exception when the index is out of range.
</p>
<h4>