• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5<title>Release Notes</title>
6<link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css">
7<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
8<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
9<link rel="up" href="../circular_buffer.html" title="Chapter 8. Boost.Circular Buffer">
10<link rel="prev" href="tickets.html" title="Trac Tickets">
11<link rel="next" href="acknowledgements.html" title="Acknowledgements">
12</head>
13<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14<table cellpadding="2" width="100%"><tr>
15<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td>
16<td align="center"><a href="../../../index.html">Home</a></td>
17<td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td>
18<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
19<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
20<td align="center"><a href="../../../more/index.htm">More</a></td>
21</tr></table>
22<hr>
23<div class="spirit-nav">
24<a accesskey="p" href="tickets.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="acknowledgements.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
25</div>
26<div class="section">
27<div class="titlepage"><div><div><h2 class="title" style="clear: both">
28<a name="circular_buffer.release"></a><a class="link" href="release.html" title="Release Notes">Release Notes</a>
29</h2></div></div></div>
30<h5>
31<a name="circular_buffer.release.h0"></a>
32      <span class="phrase"><a name="circular_buffer.release.boost_1_56"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_56">Boost
33      1.56</a>
34    </h5>
35<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
36          C++11 allocator model support implemented by Glen Fernandes.
37        </li></ul></div>
38<h5>
39<a name="circular_buffer.release.h1"></a>
40      <span class="phrase"><a name="circular_buffer.release.boost_1_55"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_55">Boost
41      1.55</a>
42    </h5>
43<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
44<li class="listitem">
45          Documentation refactored by Paul A. Bristow using Quickbook, Doxygen and
46          Autoindexing.
47        </li>
48<li class="listitem">
49          Rvalue references emulation added by Antony Polukhin using Boost.Move.
50        </li>
51</ul></div>
52<h5>
53<a name="circular_buffer.release.h2"></a>
54      <span class="phrase"><a name="circular_buffer.release.boost_1_42"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_42">Boost
55      1.42</a>
56    </h5>
57<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
58<li class="listitem">
59          Added methods erase_begin(size_type) and erase_end(size_type) with constant
60          complexity for such types of stored elements which do not need an explicit
61          destruction e.g. int or double.
62        </li>
63<li class="listitem">
64          Similarly changed implementation of the clear() method and the destructor
65          so their complexity is now constant for such types of stored elements which
66          do not require an explicit destruction (the complexity for other types
67          remains linear).
68        </li>
69</ul></div>
70<h5>
71<a name="circular_buffer.release.h3"></a>
72      <span class="phrase"><a name="circular_buffer.release.boost_1_37"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_37">Boost
73      1.37</a>
74    </h5>
75<pre class="programlisting"><span class="special">*</span><span class="identifier">Added</span> <span class="keyword">new</span> <span class="identifier">methods</span> <span class="identifier">is_linearized</span><span class="special">()</span> <span class="keyword">and</span> <span class="identifier">rotate</span><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">).</span>
76</pre>
77<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
78          Fixed bugs: <a href="https://svn.boost.org/trac/boost/ticket/1987" target="_top">#1987</a>
79          Patch to make circular_buffer.hpp #includes absolute. <a href="https://svn.boost.org/trac/boost/ticket/1852" target="_top">#1852</a>
80          Copy constructor does not copy capacity.
81        </li></ul></div>
82<h5>
83<a name="circular_buffer.release.h4"></a>
84      <span class="phrase"><a name="circular_buffer.release.boost_1_36"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_36">Boost
85      1.36</a>
86    </h5>
87<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
88<li class="listitem">
89          Changed behaviour of the circular_buffer(const allocator_type&amp;) constructor.
90          Since this version the constructor does not allocate any memory and both
91          capacity and size are set to zero.
92        </li>
93<li class="listitem">
94          Fixed bug: <a href="https://svn.boost.org/trac/boost/ticket/191" target="_top">#1919</a>
95          Default constructed circular buffer throws std::bad_alloc.
96        </li>
97</ul></div>
98<h5>
99<a name="circular_buffer.release.h5"></a>
100      <span class="phrase"><a name="circular_buffer.release.boost_1_35"></a></span><a class="link" href="release.html#circular_buffer.release.boost_1_35">Boost
101      1.35</a>
102    </h5>
103<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
104          Initial release.
105        </li></ul></div>
106</div>
107<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
108<td align="left"></td>
109<td align="right"><div class="copyright-footer">Copyright © 2003-2013 Jan Gaspar<p>
110        Distributed under the Boost Software License, Version 1.0. (See accompanying
111        file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
112      </p>
113</div></td>
114</tr></table>
115<hr>
116<div class="spirit-nav">
117<a accesskey="p" href="tickets.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="acknowledgements.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
118</div>
119</body>
120</html>
121