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 c54c6b10ed..9383c6d2fb 100644
--- a/doc/html/circular_buffer/implementation.html
+++ b/doc/html/circular_buffer/implementation.html
@@ -147,13 +147,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#idp20887968-bb">front()</a></code> or
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp21362400-bb">pop_back()</a></code>)
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp51200144-bb">front()</a></code> or
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp51674576-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#idp21060176-bb">empty()</a></code>.
+ reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp51372352-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#idp20866656-bb">at()</a></code>
+ there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp51178832-bb">at()</a></code>
method which throws an exception when the index is out of range.
</p>
<h4>