summaryrefslogtreecommitdiff
path: root/doc/html/circular_buffer
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/circular_buffer')
-rw-r--r--doc/html/circular_buffer/examples.html6
-rw-r--r--doc/html/circular_buffer/headers.html2
-rw-r--r--doc/html/circular_buffer/implementation.html8
-rw-r--r--doc/html/circular_buffer/rationale.html4
-rw-r--r--doc/html/circular_buffer/s14.html200
-rw-r--r--doc/html/circular_buffer/version_id.html2
6 files changed, 111 insertions, 111 deletions
diff --git a/doc/html/circular_buffer/examples.html b/doc/html/circular_buffer/examples.html
index 205974a5e4..83a625f014 100644
--- a/doc/html/circular_buffer/examples.html
+++ b/doc/html/circular_buffer/examples.html
@@ -177,7 +177,7 @@
<a href="../../../libs/utility/call_traits.htm" target="_top">Boost.call_traits utility</a>.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24018320-bb">push_front()</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713142850464-bb">push_front()</a></code>
method is called by the producer thread in order to insert a new item into
the buffer. The method locks the mutex and waits until there is a space for
the new item. (The mutex is unlocked during the waiting stage and has to be
@@ -190,7 +190,7 @@
consumer threads waiting for a new item to be inserted into the buffer.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">pop_back()</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713142808096-bb">pop_back()</a></code>
method is called by the consumer thread in order to read the next item from
the buffer. The method locks the mutex and waits until there is an unread item
in the buffer. If there is at least one unread item, the method decrements
@@ -203,7 +203,7 @@
the item</strong></span> but the item is left in the circular_buffer which then
<span class="bold"><strong>replaces it with a new one</strong></span> (inserted by a
producer) when the circular_buffer is full. This technique is more effective
- than removing the item explicitly by calling the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">circular_buffer::pop_back()</a></code>
+ than removing the item explicitly by calling the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713142808096-bb">circular_buffer::pop_back()</a></code>
method of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>.
</p>
<p>
diff --git a/doc/html/circular_buffer/headers.html b/doc/html/circular_buffer/headers.html
index a96406f0cb..8a1e331897 100644
--- a/doc/html/circular_buffer/headers.html
+++ b/doc/html/circular_buffer/headers.html
@@ -41,7 +41,7 @@
defined in the file <a href="../../../boost/circular_buffer/base.hpp" target="_top">base.hpp</a>.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
is defined in the file <a href="../../../boost/circular_buffer/space_optimized.hpp" target="_top">space_optimized.hpp</a>.
</p>
</div>
diff --git a/doc/html/circular_buffer/implementation.html b/doc/html/circular_buffer/implementation.html
index fee357e85e..ccadbb847a 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#idp23586256-bb">front()</a></code> or
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">pop_back()</a></code>)
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713143282528-bb">front()</a></code> or
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713142808096-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#idp23758464-bb">empty()</a></code>.
+ reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713143110320-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#idp23564944-bb">at()</a></code>
+ there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idm45713143303840-bb">at()</a></code>
method which throws an exception when the index is out of range.
</p>
<h4>
diff --git a/doc/html/circular_buffer/rationale.html b/doc/html/circular_buffer/rationale.html
index dc81796bfd..b6942031b1 100644
--- a/doc/html/circular_buffer/rationale.html
+++ b/doc/html/circular_buffer/rationale.html
@@ -48,7 +48,7 @@
</li>
<li class="listitem">
Suitable for <span class="emphasis"><em>specialization</em></span> by means of adaptors.
- (The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ (The <code class="computeroutput"><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
is such an example of the adaptor.)
</li>
<li class="listitem">
@@ -57,7 +57,7 @@
</ul></div>
<p>
In order to achieve maximum efficiency, the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>
- and <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ and <code class="computeroutput"><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
store their elements in a <span class="bold"><strong>contiguous region of memory</strong></span>,
which then enables:
</p>
diff --git a/doc/html/circular_buffer/s14.html b/doc/html/circular_buffer/s14.html
index 9072366843..c5583a809e 100644
--- a/doc/html/circular_buffer/s14.html
+++ b/doc/html/circular_buffer/s14.html
@@ -7,7 +7,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../circular_buffer.html" title="Chapter&#160;7.&#160;Boost.Circular Buffer">
-<link rel="prev" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">
+<link rel="prev" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized">
<link rel="next" href="../container.html" title="Chapter&#160;8.&#160;Boost.Container">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -21,11 +21,11 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="../boost/circular_buffe_idp24914528.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="../boost/circular_idm45713141954256.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="idp147059216"></a>Index</h2></div></div></div>
+<a name="idm45555418455568"></a>Index</h2></div></div></div>
<p><a class="link" href="s14.html#idx_id_0">A</a> <a class="link" href="s14.html#idx_id_1">B</a> <a class="link" href="s14.html#idx_id_2">C</a> <a class="link" href="s14.html#idx_id_3">D</a> <a class="link" href="s14.html#idx_id_4">E</a> <a class="link" href="s14.html#idx_id_5">F</a> <a class="link" href="s14.html#idx_id_6">I</a> <a class="link" href="s14.html#idx_id_7">L</a> <a class="link" href="s14.html#idx_id_8">M</a> <a class="link" href="s14.html#idx_id_9">P</a> <a class="link" href="s14.html#idx_id_10">R</a> <a class="link" href="s14.html#idx_id_11">S</a> <a class="link" href="s14.html#idx_id_12">T</a> <a class="link" href="s14.html#idx_id_13">V</a> <a class="link" href="s14.html#idx_id_14">W</a></p>
<div class="variablelist"><dl class="variablelist">
<dt>
@@ -38,7 +38,7 @@
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">adjust_min_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">allocate</span></p>
@@ -48,7 +48,7 @@
<p><span class="index-entry-level-0">allocator_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -59,7 +59,7 @@
<p><span class="index-entry-level-0">array_range</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -70,7 +70,7 @@
<p><span class="index-entry-level-0">assign</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -93,20 +93,20 @@
<p><span class="index-entry-level-0">back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">begin</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">BOOST_CB_DISABLE_DEBUG</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
</ul></div>
</li>
@@ -121,26 +121,26 @@
<dd><div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">capacity_control</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">capacity_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">check_high_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">check_low_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">circular_buffer_space_optimized</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Class template circular_buffer</span></p>
@@ -215,55 +215,55 @@
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Class template circular_buffer_space_optimized</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">adjust_min_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">allocator_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">array_range</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">assign</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">begin</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">BOOST_CB_DISABLE_DEBUG</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_control</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_high_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_low_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">circular_buffer_space_optimized</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">clear</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_array_range</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_pointer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reference</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reverse_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">difference_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">end</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">erase</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">init_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">insert</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Linear</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">param_value_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pointer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reduce_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reference</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rerase</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reverse_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rinsert</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rset_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rvalue_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">set_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">size_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">value_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">adjust_min_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">allocator_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">array_range</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">assign</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">begin</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">BOOST_CB_DISABLE_DEBUG</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_control</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_high_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_low_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">clear</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_array_range</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_pointer</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reference</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reverse_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">difference_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">end</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">erase</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">init_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">insert</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Linear</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">param_value_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pointer</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reduce_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reference</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rerase</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reverse_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rinsert</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rset_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rvalue_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">set_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">size_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">value_type</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">clear</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="release.html" title="Release Notes"><span class="index-entry-level-1">Release Notes</span></a></p></li>
</ul></div>
</li>
@@ -275,35 +275,35 @@
<p><span class="index-entry-level-0">const_array_range</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_pointer</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_reference</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_reverse_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -343,7 +343,7 @@
<p><span class="index-entry-level-0">difference_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -355,14 +355,14 @@
<p><span class="index-entry-level-0">end</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">erase</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -388,33 +388,33 @@
<p><span class="index-entry-level-0">front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator!=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24836512.html" title="Function template operator!="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142032272.html" title="Function template operator!="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&gt;</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24850672.html" title="Function template operator&gt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142018112.html" title="Function template operator&gt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&gt;=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24879024.html" title="Function template operator&gt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713141989760.html" title="Function template operator&gt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&lt;</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24823168.html" title="Function template operator&lt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142045616.html" title="Function template operator&lt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&lt;=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24864848.html" title="Function template operator&lt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142003936.html" title="Function template operator&lt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator==</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24809744.html" title="Function template operator=="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142059040.html" title="Function template operator=="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
</ul></div></dd>
<dt>
@@ -441,13 +441,13 @@
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">init_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">insert</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -466,7 +466,7 @@
<p><span class="index-entry-level-0">iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -478,13 +478,13 @@
<p><span class="index-entry-level-0">Linear</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24836512.html" title="Function template operator!="><span class="index-entry-level-1">Function template operator!=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24850672.html" title="Function template operator&gt;"><span class="index-entry-level-1">Function template operator&gt;</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24879024.html" title="Function template operator&gt;="><span class="index-entry-level-1">Function template operator&gt;=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24823168.html" title="Function template operator&lt;"><span class="index-entry-level-1">Function template operator&lt;</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24864848.html" title="Function template operator&lt;="><span class="index-entry-level-1">Function template operator&lt;=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24809744.html" title="Function template operator=="><span class="index-entry-level-1">Function template operator==</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142032272.html" title="Function template operator!="><span class="index-entry-level-1">Function template operator!=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142018112.html" title="Function template operator&gt;"><span class="index-entry-level-1">Function template operator&gt;</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713141989760.html" title="Function template operator&gt;="><span class="index-entry-level-1">Function template operator&gt;=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142045616.html" title="Function template operator&lt;"><span class="index-entry-level-1">Function template operator&lt;</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142003936.html" title="Function template operator&lt;="><span class="index-entry-level-1">Function template operator&lt;=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idm45713142059040.html" title="Function template operator=="><span class="index-entry-level-1">Function template operator==</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -537,21 +537,21 @@
<p><span class="index-entry-level-0">param_value_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">pointer</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">pop_back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
@@ -560,14 +560,14 @@
<p><span class="index-entry-level-0">pop_front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">push_back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -578,7 +578,7 @@
<p><span class="index-entry-level-0">push_front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li>
@@ -593,13 +593,13 @@
<dd><div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">reduce_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">reference</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -619,7 +619,7 @@
<p><span class="index-entry-level-0">rerase</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -630,14 +630,14 @@
<p><span class="index-entry-level-0">reverse_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">rinsert</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -659,14 +659,14 @@
<p><span class="index-entry-level-0">rset_capacity</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">rvalue_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -678,14 +678,14 @@
<p><span class="index-entry-level-0">set_capacity</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">size_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li>
@@ -714,7 +714,7 @@
<p><span class="index-entry-level-0">value_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_idm45713141954256.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li></ul></div></dd>
@@ -737,7 +737,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="../boost/circular_buffe_idp24914528.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="../boost/circular_idm45713141954256.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
diff --git a/doc/html/circular_buffer/version_id.html b/doc/html/circular_buffer/version_id.html
index ef29c63ff8..64653a6e41 100644
--- a/doc/html/circular_buffer/version_id.html
+++ b/doc/html/circular_buffer/version_id.html
@@ -28,7 +28,7 @@
<a name="circular_buffer.version_id"></a><a class="link" href="version_id.html" title="Documentation Version Info">Documentation Version Info</a>
</h2></div></div></div>
<p>
- Last edit to Quickbook file circular_buffer.qbk was at 10:04:50 AM on 2015-Aug-04.
+ Last edit to Quickbook file circular_buffer.qbk was at 09:17:08 AM on 2015-Dec-14.
</p>
<div class="tip"><table border="0" summary="Tip">
<tr>