|
Boost-Commit : |
From: grafikrobot_at_[hidden]
Date: 2008-03-16 15:35:04
Author: grafik
Date: 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
New Revision: 43657
URL: http://svn.boost.org/trac/boost/changeset/43657
Log:
Fix feeds to display correctly in RSS readers, and to allow char entities from the quickbook source to show up in the output as utf-8 chars.
Text files modified:
website/public_html/beta/feed/bbook2rss.py | 6
website/public_html/beta/feed/downloads.rss | 216
website/public_html/beta/feed/history.rss | 4602 +++++++++++++++++++-------------------
website/public_html/beta/feed/history/boost_1_35_0.qbk | 4
website/public_html/beta/feed/news.rss | 1566 ++++++------
website/public_html/beta/index.php | 2
website/public_html/beta/users/download/entry.php | 2
website/public_html/beta/users/download/index.php | 2
website/public_html/beta/users/history/entry.php | 2
website/public_html/beta/users/history/index.php | 2
website/public_html/beta/users/news/entry.php | 2
website/public_html/beta/users/news/index.php | 2
12 files changed, 3204 insertions(+), 3204 deletions(-)
Modified: website/public_html/beta/feed/bbook2rss.py
==============================================================================
--- website/public_html/beta/feed/bbook2rss.py (original)
+++ website/public_html/beta/feed/bbook2rss.py 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -76,7 +76,7 @@
else:
out = sys.stdout
if out:
- out.write(self.tostring())
+ self.rss.writexml(out,encoding='utf-8')
#~ Turns the internal XML tree into an output UTF-8 string.
def tostring(self):
@@ -140,9 +140,9 @@
'item',
self.new_text('title',node.getAttribute('name')),
self.new_text('pubDate',node.getAttribute('last-revision')),
- self.new_text('boostbook:purpose',escape(brief_xhtml.toxml('utf-8'))),
+ self.new_text('boostbook:purpose',brief_xhtml.toxml('utf-8')),
download_item,
- self.new_text('description',escape(description_xhtml.toxml('utf-8')))
+ self.new_text('description',description_xhtml.toxml('utf-8'))
)
def x__text(self,node):
Modified: website/public_html/beta/feed/downloads.rss
==============================================================================
--- website/public_html/beta/feed/downloads.rss (original)
+++ website/public_html/beta/feed/downloads.rss 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -6,166 +6,166 @@
<description/>
<language>en-us</language>
<copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
- <item><title>Boost Jam 3.1.16</title><pubDate>Mon, 3 Dec 2007 04:09:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ <item><title>Boost Jam 3.1.16</title><pubDate>Mon, 3 Dec 2007 04:09:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
This is mostly a bug fix release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>https://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941&release_id=558771><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>https://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941&release_id=558771><description><div class="description">
- &lt;p&gt;
+ <p>
This is mostly a bug fix release.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </p>
+ <ul>
+ <li>
Work around some Windows CMD.EXE programs that will fail executing a totally
empty batch file. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Add support for detection and building with vc9. -- John P.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Plug memory leak when closing out actions. Thanks to Martin Kortmann for finding
this. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
- Various improvements to __TIMING&lt;em&gt;RULE&lt;/em&gt;_
- and __ACTION&lt;em&gt;RULE&lt;/em&gt;_ target variable hooks.
+ </li>
+ <li>
+ Various improvements to __TIMING<em>RULE</em>_
+ and __ACTION<em>RULE</em>_ target variable hooks.
-- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Change JAMDATE to use common ISO date format. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Add test for result status values of simple actions, i.e. empty actions. --
Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Fix buffer overrun bug in expanding @() subexpressions. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Check empty string invariants, instead of assuming all strings are allocated.
And reset strings when they are freed. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Add OSPLAT=PARISC for HP-UX PA-RISC. -- Boris G.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Make quietly actions really quiet by not printing the command output. The output
- for the quietly actions is still available through __ACTION&lt;em&gt;RULE&lt;/em&gt;_.
+ for the quietly actions is still available through __ACTION<em>RULE</em>_.
-- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Switch intel-win32 to use static multi thread runtime since the single thread
static runtime is no longer available. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
When setting OSPLAT, check __ia64 macro. -- Boris G.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Get the unix timing working correctly. -- Noel B.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Add -fno-strict-aliasing to compilation with gcc. Which works around GCC-4.2
crash problems. -- Boris G.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Increased support for Python integration. -- Vladimir P., Daniel W.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Allow specifying options with quotes, i.e. --with-python=xyz, to work around
the CMD shell using = as an argument separator. -- Rene R.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Add values of variables specified with -s to .EVNRION module, so that we can
override environment on command line. -- Vladimir P.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Make NORMALIZE_PATH convert to /. -- Vladimir P.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix Release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description><div class="description">
- &lt;p&gt;
+ <p>
This is a bug fix release addressing many problems with the 1.34.0 release. It
is a recommended upgrade for all users of Boost 1.34.0. For a complete list of
- fixes see &lt;a href="http://svn.boost.org/trac/boost/query?status=closed&amp;amp;milestone=Boost+1.34.1"&gt;Boost
- Trac&lt;/a&gt;.
- &lt;/p&gt;
- &lt;div id="version_1_34_1.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ fixes see <a href="http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">Boost
+ Trac</a>.
+ </p>
+ <div id="version_1_34_1.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
New in this release is improved support for the IBM XL C/C++ compiler.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. New in this release The following compilers
and platforms have been extensively tested with Boost, although many other
- compilers and platforms will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 4.0.1 on Mac OS
+ compilers and platforms will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 4.0.1 on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.8.2 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org/"&gt;GNU C++&lt;/a&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org/">GNU C++</a>
+ <ul>
+ <li>
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
4.1.x on Solaris
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
3.4.x on Windows
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.hp.com/go/c++"&gt;HP aC++ A.06.14&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 9.1 on Windows, 9.0 on Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com/"&gt;Metrowerks CodeWarrior&lt;/a&gt; 9.4
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+ </li>
+ <li>
+ <a href="http://www.hp.com/go/c++">HP aC++ A.06.14</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 9.1 on Windows, 9.0 on Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com/">Metrowerks CodeWarrior</a> 9.4
on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://developers.sun.com/sunstudio/index.jsp"&gt;Sun Studio 11&lt;/a&gt;
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ <li>
+ <a href="http://developers.sun.com/sunstudio/index.jsp">Sun Studio 11</a>
on Solaris.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_1.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/thomas_witt.html"&gt;Thomas Witt&lt;/a&gt; managed this
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_1.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/thomas_witt.html">Thomas Witt</a> managed this
release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Kim Barrett consolidating Boost.Iostreams
changes from various branches and Rene Rivera for general build and installation
support.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item></channel>
+ </p>
+ </div>
+</div></description></item></channel>
</rss>
\ No newline at end of file
Modified: website/public_html/beta/feed/history.rss
Modified: website/public_html/beta/feed/history/boost_1_35_0.qbk
Modified: website/public_html/beta/feed/news.rss
Modified: website/public_html/beta/index.php
Modified: website/public_html/beta/users/download/entry.php
Modified: website/public_html/beta/users/download/index.php
Modified: website/public_html/beta/users/history/entry.php
Modified: website/public_html/beta/users/history/index.php
Modified: website/public_html/beta/users/news/entry.php
Modified: website/public_html/beta/users/news/index.php
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk
==============================================================================
--- website/public_html/beta/feed/history.rss (original)
+++ website/public_html/beta/feed/history.rss 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -6,1563 +6,1563 @@
<description/>
<language>en-us</language>
<copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
- <item><title>Version 1.35.0</title><pubDate>Wed, 23 Jan 2008 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ <item><title>Version 1.35.0</title><pubDate>Wed, 23 Jan 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041><description><div class="description">
- &lt;div id="version_1_35_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/asio/index.html"&gt;Asio&lt;/a&gt;:&lt;/span&gt; Portable networking,
+ <div id="version_1_35_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span> Portable networking,
including sockets, timers, hostname resolution and socket iostreams, from
Chris Kohlhoff.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/bimap/index.html"&gt;Bimap&lt;/a&gt;:&lt;/span&gt; Boost.Bimap is a
+ </li>
+ <li>
+ <span class="library"><a href="/libs/bimap/index.html">Bimap</a>:</span> Boost.Bimap is a
bidirectional maps library for C++. With Boost.Bimap you can create associative
containers in which both types can be used as key, from Matias Capeletto.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/circular_buffer/index.html"&gt;circular_buffer&lt;/a&gt;:&lt;/span&gt; STL
+ </li>
+ <li>
+ <span class="library"><a href="/libs/circular_buffer/index.html">circular_buffer</a>:</span> STL
compliant container also known as ring or cyclic buffer, from Jan Gaspar.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function_types/index.html"&gt;Function Types&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function_types/index.html">Function Types</a>:</span>
Boost.FunctionTypes
provides functionality to classify, decompose and synthesize function, function
pointer, function reference and pointer to member types. From Tobias Schwinger.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/fusion/index.html"&gt;Fusion&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
Library for working
with tuples, including various containers, algorithms, etc. From Joel de
Guzman, Dan Marsden and Tobias Schwinger.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/gil/doc/index.html"&gt;GIL&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/gil/doc/index.html">GIL</a>:</span>
Generic Image Library,
from Lubomir Bourdev and Hailin Jin.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/interprocess/index.html"&gt;Interprocess&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
Shared
memory, memory mapped files, process-shared mutexes, condition variables,
- containers and allocators, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/intrusive/index.html"&gt;Intrusive&lt;/a&gt;:&lt;/span&gt;
+ containers and allocators, from Ion Gaztañaga.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
Intrusive
- containers and algorithms, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/math/doc/sf_and_dist/html/index.html"&gt;Math/Special
- Functions&lt;/a&gt;:&lt;/span&gt;
+ containers and algorithms, from Ion Gaztañaga.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Special
+ Functions</a>:</span>
A wide selection of mathematical special functions from
John Maddock, Paul Bristow, Hubert Holin and Xiaogang Zhang.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/math/doc/sf_and_dist/html/index.html"&gt;Math/Statistical
- Distributions&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Statistical
+ Distributions</a>:</span>
A wide selection of univariate statistical distributions
and functions that operate on them from John Maddock and Paul Bristow
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/html/mpi.html"&gt;MPI&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/html/mpi.html">MPI</a>:</span>
Message Passing Interface
library, for use in distributed-memory parallel application programming,
from Douglas Gregor and Matthias Troyer.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/system/index.html"&gt;System&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/system/index.html">System</a>:</span>
Operating system
support, including the diagnostics support that will be part of the C++0x
standard library, from Beman Dawes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/iostreams/index.html"&gt;Iostreams&lt;/a&gt;:&lt;/span&gt; Framework
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_35_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/iostreams/index.html">Iostreams</a>:</span> Framework
for defining streams, stream buffers and i/o filters, from Jonathan Turkanis.
Highlights:
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
Clarified the semantics of close(). This fixes several bugs but will
- break some existing code. See &lt;a href="/libs/iostreams/doc/index.html?path=12"&gt;Release
- Notes&lt;/a&gt; for details.
- &lt;/li&gt;
- &lt;li&gt;
+ break some existing code. See <a href="/libs/iostreams/doc/index.html?path=12">Release
+ Notes</a> for details.
+ </li>
+ <li>
Numerous other bug fixes and optimizations.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/thread/index.html"&gt;Thread&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/thread/index.html">Thread</a>:</span>
+ <ul>
+ <li>
Instances of boost::thread and of the various lock types are now movable.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Threads can be interrupted at interruption points.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Condition variables can now be used with any type that implements the
- Lockable concept, through the use of &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable_any&lt;/span&gt;&lt;/code&gt;
- (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition&lt;/span&gt;&lt;/code&gt; is a typedef to &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable_any&lt;/span&gt;&lt;/code&gt;, provided for
- backwards compatibility). &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable&lt;/span&gt;&lt;/code&gt;
- is provided as an optimization, and will only work with &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;unique_lock&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;li&gt;
+ Lockable concept, through the use of <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>
+ (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition</span></code> is a typedef to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>, provided for
+ backwards compatibility). <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable</span></code>
+ is provided as an optimization, and will only work with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">&gt;</span></code>
+ (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span></code>).
+ </li>
+ <li>
Thread IDs are separated from boost::thread, so a thread can obtain it's
- own ID (using &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;this_thread&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;get_id&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;),
+ own ID (using <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">this_thread</span><span class="special">::</span><span class="identifier">get_id</span><span class="special">()</span></code>),
and IDs can be used as keys in associative containers, as they have the
full set of comparison operators.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Timeouts are now implemented using the Boost DateTime library, through
- a typedef &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;system_time&lt;/span&gt;&lt;/code&gt; for absolute timeouts,
- and with support for relative timeouts in many cases. &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;xtime&lt;/span&gt;&lt;/code&gt;
+ a typedef <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system_time</span></code> for absolute timeouts,
+ and with support for relative timeouts in many cases. <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">xtime</span></code>
is supported for backwards compatibility only.
- &lt;/li&gt;
- &lt;li&gt;
- Locks are implemented as publicly accessible templates &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;lock_guard&lt;/span&gt;&lt;/code&gt;, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;unique_lock&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;shared_lock&lt;/span&gt;&lt;/code&gt;, and &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;upgrade_lock&lt;/span&gt;&lt;/code&gt;,
+ </li>
+ <li>
+ Locks are implemented as publicly accessible templates <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">lock_guard</span></code>, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span></code>,
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_lock</span></code>, and <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">upgrade_lock</span></code>,
which are templated on the type of the mutex. The Lockable concept has
- been extended to include publicly available &lt;code&gt;&lt;span class="identifier"&gt;lock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="identifier"&gt;unlock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; member functions, which are used by
+ been extended to include publicly available <code><span class="identifier">lock</span><span class="special">()</span></code> and <code><span class="identifier">unlock</span><span class="special">()</span></code> member functions, which are used by
the lock types.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;try_mutex&lt;/span&gt;&lt;/code&gt; has been removed, and the
- functionality subsumed into &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;try_mutex&lt;/span&gt;&lt;/code&gt; is left as a typedef, but
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> has been removed, and the
+ functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span></code>.
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> is left as a typedef, but
is no longer a separate class.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_try_mutex&lt;/span&gt;&lt;/code&gt; has been removed,
- and the functionality subsumed into &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_try_mutex&lt;/span&gt;&lt;/code&gt; is left as a typedef,
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> has been removed,
+ and the functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_mutex</span></code>.
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> is left as a typedef,
but is no longer a separate class.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;detail&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;thread&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;lock_ops&lt;/span&gt;&lt;/code&gt; has been removed. Code that
- relies on the &lt;code&gt;&lt;span class="identifier"&gt;lock_ops&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">detail</span><span class="special">::</span><span class="identifier">thread</span><span class="special">::</span><span class="identifier">lock_ops</span></code> has been removed. Code that
+ relies on the <code><span class="identifier">lock_ops</span></code>
implementation detail will no longer work, as this has been removed,
- as it is no longer necessary now that mutex types now have public &lt;code&gt;&lt;span class="identifier"&gt;lock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- and &lt;code&gt;&lt;span class="identifier"&gt;unlock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ as it is no longer necessary now that mutex types now have public <code><span class="identifier">lock</span><span class="special">()</span></code>
+ and <code><span class="identifier">unlock</span><span class="special">()</span></code>
member functions.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;&lt;/code&gt; constructors
+ </li>
+ <li>
+ <code><span class="identifier">scoped_lock</span></code> constructors
with a second parameter of type bool are no longer provided. With previous
- boost releases, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;
- &lt;span class="identifier"&gt;some_lock&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;some_mutex&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="keyword"&gt;false&lt;/span&gt;&lt;span class="special"&gt;);&lt;/span&gt;&lt;/code&gt;
+ boost releases, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
+ <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="keyword">false</span><span class="special">);</span></code>
could be used to create a lock object that was associated with a mutex,
but did not lock it on construction. This facility has now been replaced
- with the constructor that takes a &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;defer_lock_type&lt;/span&gt;&lt;/code&gt;
- as the second parameter: &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;
- &lt;span class="identifier"&gt;some_lock&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;some_mutex&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;defer_lock&lt;/span&gt;&lt;span class="special"&gt;);&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- The broken &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;read_write_mutex&lt;/span&gt;&lt;/code&gt; has been replaced
- with &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;shared_mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/wave/index.html"&gt;Wave&lt;/a&gt;:&lt;/span&gt; Standards conformant
+ with the constructor that takes a <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock_type</span></code>
+ as the second parameter: <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
+ <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock</span><span class="special">);</span></code>
+ </li>
+ <li>
+ The broken <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">read_write_mutex</span></code> has been replaced
+ with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_mutex</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/wave/index.html">Wave</a>:</span> Standards conformant
implementation of the mandated C99/C++ preprocessor functionality packed
behind an easy to use iterator interface, from Hartmut Kaiser. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
Added the possibility to continue the preprocessing after an error occured.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added the macro introspection API to the wave::context object.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added threading support to the library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Improved the overall performance by upto 30%.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Changed and unified preprocessor hook interface (this is an interface
breaking change!), added several new preprocessor hook functions.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added serialization support.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added new examples (for instance: Hannibal - a partial C++ parser, by
Danny Havenith).
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added a new lexical analyzer based on Ben Hansons Lexertl library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Fixed a large number of other bugs and problems.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/xpressive/index.html"&gt;Xpressive&lt;/a&gt;:&lt;/span&gt; Regular
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span> Regular
expressions that can be written as strings or as expression templates, and
that can refer to each other and themselves recursively with the power of
context-free grammars, from Eric Niebler. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
- Added &lt;em&gt;semantic actions&lt;/em&gt; to static regexes. A semantic
+ <ul>
+ <li>
+ Added <em>semantic actions</em> to static regexes. A semantic
action is code that executes when part of a regular expression matches.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;custom assertions&lt;/em&gt; to static regexes. A custom
+ </li>
+ <li>
+ Added <em>custom assertions</em> to static regexes. A custom
assertion is a Boolean predicate that can participate in the regex match.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;named regexes&lt;/em&gt; for embedding a static or dynamic
+ </li>
+ <li>
+ Added <em>named regexes</em> for embedding a static or dynamic
regex into a dynamic regex. This can be used to create dynamic regex
grammars.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;named captures&lt;/em&gt; to dynamic regexes, like Perl.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/functional/hash/index.html"&gt;Hash&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ Added <em>named captures</em> to dynamic regexes, like Perl.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
A TR1 hash
function object, from Daniel James. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="keyword"&gt;long&lt;/span&gt; &lt;span class="keyword"&gt;long&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;complex&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ <ul>
+ <li>
+ Support for <code><span class="keyword">long</span> <span class="keyword">long</span></code>,
+ <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">complex</span></code>.
+ </li>
+ <li>
Improved the algorithm for hashing floating point numbers.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
A few bug and warning fixes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/beman_dawes.html"&gt;Beman Dawes&lt;/a&gt; managed this
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_35_0.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ </div>
+ <div id="version_1_35_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/beman_dawes.html">Beman Dawes</a> managed this
release.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix Release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description><div class="description">
- &lt;p&gt;
+ <p>
This is a bug fix release addressing many problems with the 1.34.0 release. It
is a recommended upgrade for all users of Boost 1.34.0. For a complete list of
- fixes see &lt;a href="http://svn.boost.org/trac/boost/query?status=closed&amp;amp;milestone=Boost+1.34.1"&gt;Boost
- Trac&lt;/a&gt;.
- &lt;/p&gt;
- &lt;div id="version_1_34_1.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ fixes see <a href="http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">Boost
+ Trac</a>.
+ </p>
+ <div id="version_1_34_1.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
New in this release is improved support for the IBM XL C/C++ compiler.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. New in this release The following compilers
and platforms have been extensively tested with Boost, although many other
- compilers and platforms will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 4.0.1 on Mac OS
+ compilers and platforms will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 4.0.1 on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.8.2 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org/"&gt;GNU C++&lt;/a&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org/">GNU C++</a>
+ <ul>
+ <li>
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
4.1.x on Solaris
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
3.4.x on Windows
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.hp.com/go/c++"&gt;HP aC++ A.06.14&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 9.1 on Windows, 9.0 on Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com/"&gt;Metrowerks CodeWarrior&lt;/a&gt; 9.4
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+ </li>
+ <li>
+ <a href="http://www.hp.com/go/c++">HP aC++ A.06.14</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 9.1 on Windows, 9.0 on Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com/">Metrowerks CodeWarrior</a> 9.4
on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://developers.sun.com/sunstudio/index.jsp"&gt;Sun Studio 11&lt;/a&gt;
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ <li>
+ <a href="http://developers.sun.com/sunstudio/index.jsp">Sun Studio 11</a>
on Solaris.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_1.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/thomas_witt.html"&gt;Thomas Witt&lt;/a&gt; managed this
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_1.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/thomas_witt.html">Thomas Witt</a> managed this
release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Kim Barrett consolidating Boost.Iostreams
changes from various branches and Rene Rivera for general build and installation
support.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.34.0</title><pubDate>Sat, 12 May 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.34.0</title><pubDate>Sat, 12 May 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Foreach, Statechart, TR1, Typeof, Xpressive. Updated Libraries:
Assign, Date_time, Filesystem, Function, Hash, Graph, MultiArray, Multi-Index,
Optional, Parameter, Pointer Container, Python, Signals, Smart Pointer, String
Algorithm, Wave
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975><description><div class="description">
- &lt;div id="version_1_34_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/foreach.html"&gt;Foreach Library&lt;/a&gt;:&lt;/span&gt; &lt;code&gt;&lt;span class="identifier"&gt;BOOST_FOREACH&lt;/span&gt;&lt;/code&gt; macro for easily iterating
+ <div id="version_1_34_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/foreach.html">Foreach Library</a>:</span> <code><span class="identifier">BOOST_FOREACH</span></code> macro for easily iterating
over the elements of a sequence, from Eric Niebler.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/statechart/doc/index.html"&gt;Statechart
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/statechart/doc/index.html">Statechart
+ Library</a>:</span>
Arbitrarily complex finite state machines can be implemented
in easily readable and maintainable C++ code, from Andreas Huber.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/tr1/index.html"&gt;TR1 Library&lt;/a&gt;:&lt;/span&gt; An
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/tr1/index.html">TR1 Library</a>:</span> An
implementation of the C++ Technical Report on Standard Library Extensions,
from John Maddock. This library does not itself implement the TR1 components,
rather it's a thin wrapper that will include your standard library's TR1
implementation (if it has one), otherwise it will include the Boost Library
- equivalents, and import them into namespace &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;tr1&lt;/span&gt;&lt;/code&gt;.
+ equivalents, and import them into namespace <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">tr1</span></code>.
Highlights include: Reference Wrappers, Smart Pointers, result_of, Function
Object Binders, Polymorphic function wrappers, Type Traits, Random Number
Generators and Distributions, Tuples, Fixed Size Array, Hash Function Objects,
Regular Expressions, and Complex Number Additional Algorithms.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/typeof.html"&gt;Typeof Library&lt;/a&gt;:&lt;/span&gt; Typeof
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/typeof.html">Typeof Library</a>:</span> Typeof
operator emulation, from Arkadiy Vertleyb and Peder Holt.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/xpressive.html"&gt;Xpressive Library&lt;/a&gt;:&lt;/span&gt; Regular
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/xpressive.html">Xpressive Library</a>:</span> Regular
expressions that can be written as strings or as expression templates, and
that can refer to each other and themselves recursively with the power of
context-free grammars, from Eric Niebler.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/assign/index.html"&gt;Assign Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="identifier"&gt;ptr_map&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;key&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- via the new function &lt;code&gt;&lt;span class="identifier"&gt;ptr_map_insert&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- Support for initialization of &lt;a href="/doc/libs/1_34_0/libs/ptr_container/index.html"&gt;Pointer
- Containers&lt;/a&gt; when the containers hold pointers to an abstract base
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/assign/index.html">Assign Library</a>:</span>
+ <ul>
+ <li>
+ Support for <code><span class="identifier">ptr_map</span><span class="special">&lt;</span><span class="identifier">key</span><span class="special">,</span><span class="identifier">T</span><span class="special">&gt;</span></code>
+ via the new function <code><span class="identifier">ptr_map_insert</span><span class="special">()</span></code>
+ </li>
+ <li>
+ Support for initialization of <a href="/doc/libs/1_34_0/libs/ptr_container/index.html">Pointer
+ Containers</a> when the containers hold pointers to an abstract base
class.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/date_time.html"&gt;Date_time library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for new US/Canada timezone rules and other bug fixes. See &lt;a href="/doc/libs/1_34_0/doc/html/date_time/details.html#changes"&gt;Change
- History&lt;/a&gt; for details.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/index.htm"&gt;Filesystem
- Library&lt;/a&gt;:&lt;/span&gt; Major upgrade in preparation for submission to the C++ Standards
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/date_time.html">Date_time library</a>:</span>
+ <ul>
+ <li>
+ Support for new US/Canada timezone rules and other bug fixes. See <a href="/doc/libs/1_34_0/doc/html/date_time/details.html#changes">Change
+ History</a> for details.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/filesystem/doc/index.htm">Filesystem
+ Library</a>:</span> Major upgrade in preparation for submission to the C++ Standards
Committee for TR2. Changes include:
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Internationalization"&gt;Internationalization&lt;/a&gt;,
- provided by class templates &lt;em&gt;basic_path&lt;/em&gt;, &lt;em&gt;basic_filesystem_error&lt;/em&gt;,
- &lt;em&gt;basic_directory_iterator&lt;/em&gt;, and &lt;em&gt;basic_directory_entry&lt;/em&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Simplification"&gt;Simplification&lt;/a&gt;
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Internationalization">Internationalization</a>,
+ provided by class templates <em>basic_path</em>, <em>basic_filesystem_error</em>,
+ <em>basic_directory_iterator</em>, and <em>basic_directory_entry</em>.
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Simplification">Simplification</a>
of the path interface by eliminating special constructors to identify
native formats.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Rationalization"&gt;Rationalization&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Rationalization">Rationalization</a>
of predicate function design, including the addition of several new functions.
- &lt;/li&gt;
- &lt;li&gt;
- Clearer specification by reference to &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/design.htm#POSIX-01"&gt;POSIX&lt;/a&gt;,
+ </li>
+ <li>
+ Clearer specification by reference to <a href="/doc/libs/1_34_0/libs/filesystem/doc/design.htm#POSIX-01">POSIX</a>,
the ISO/IEEE Single Unix Standard, with provisions for Windows and other
operating systems.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Preservation"&gt;Preservation&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Preservation">Preservation</a>
of existing user code whenever possible.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#More_efficient"&gt;More
- efficient&lt;/a&gt; directory iteration.
- &lt;/li&gt;
- &lt;li&gt;
- Addition of a &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/tr2_proposal.html#Class-template-basic_recursive_directory_iterator"&gt;recursive
- directory iterator&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#More_efficient">More
+ efficient</a> directory iteration.
+ </li>
+ <li>
+ Addition of a <a href="/doc/libs/1_34_0/libs/filesystem/doc/tr2_proposal.html#Class-template-basic_recursive_directory_iterator">recursive
+ directory iterator</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/function/index.html">Function Library</a>:</span>
Boost.Function
now implements a small buffer optimization, which can drastically improve
the performance when copying or constructing Boost.Function objects storing
- small function objects. For instance, &lt;code&gt;&lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;:&lt;/span&gt;&lt;span class="identifier"&gt;foo&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;
- &lt;span class="special"&gt;&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;x&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_1&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;
- &lt;span class="identifier"&gt;_2&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;
+ small function objects. For instance, <code><span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">:</span><span class="identifier">foo</span><span class="special">,</span>
+ <span class="special">&amp;</span><span class="identifier">x</span><span class="special">,</span> <span class="identifier">_1</span><span class="special">,</span>
+ <span class="identifier">_2</span><span class="special">)</span></code>
requires no heap allocation when placed into a Boost.Function object.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/functional/hash/index.html"&gt;Functional/Hash
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/functional/hash/index.html">Functional/Hash
+ Library</a>:</span>
+ <ul>
+ <li>
Use declarations for standard classes, so that the library doesn't need
to include all of their headers
- &lt;/li&gt;
- &lt;li&gt;
- Deprecated the &lt;tt&gt;&amp;lt;boost/functional&lt;em&gt;hash&lt;/em&gt;*.hpp&amp;gt;&lt;/tt&gt;
+ </li>
+ <li>
+ Deprecated the <tt>&lt;boost/functional<em>hash</em>*.hpp&gt;</tt>
headers.
- &lt;/li&gt;
- &lt;li&gt;
- Add support for the &lt;code&gt;&lt;span class="identifier"&gt;BOOST_HASH_NO_EXTENSIONS&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ Add support for the <code><span class="identifier">BOOST_HASH_NO_EXTENSIONS</span></code>
macro, which disables the extensions to TR1
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor improvements to the hash functions for floating point numbers.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/maximum_matching.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;edmonds_maximum_cardinality_matching&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/graph/doc/index.html">Graph Library</a>:</span>
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/maximum_matching.html"><code><span class="identifier">edmonds_maximum_cardinality_matching</span></code></a>,
from Aaron Windsor.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/lengauer_tarjan_dominator.htm"&gt;&lt;code&gt;&lt;span class="identifier"&gt;lengauer_tarjan_dominator_tree&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/lengauer_tarjan_dominator.htm"><code><span class="identifier">lengauer_tarjan_dominator_tree</span></code></a>,
from JongSoo Park.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/compressed_sparse_row.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;compressed_sparse_row_graph&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/compressed_sparse_row.html"><code><span class="identifier">compressed_sparse_row_graph</span></code></a>,
from Jeremiah Willcock and Douglas Gregor of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/sorted_erdos_renyi_gen.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;sorted_erdos_renyi_iterator&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/sorted_erdos_renyi_gen.html"><code><span class="identifier">sorted_erdos_renyi_iterator</span></code></a>,
from Jeremiah Willcock of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/biconnected_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;biconnected_components&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/biconnected_components.html"><code><span class="identifier">biconnected_components</span></code></a> now
supports a visitor and named parameters, from Janusz Piwowarski.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/adjacency_matrix.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_matrix&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now models
- the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/BidirectionalGraph.html"&gt;Bidirectional
- Graph&lt;/a&gt; concept.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/dijkstra_shortest_paths.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now
- calls &lt;code&gt;&lt;span class="identifier"&gt;vis&lt;/span&gt;&lt;span class="special"&gt;.&lt;/span&gt;&lt;span class="identifier"&gt;initialize_vertex&lt;/span&gt;&lt;/code&gt; for each vertex during
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/adjacency_matrix.html"><code><span class="identifier">adjacency_matrix</span></code></a> now models
+ the <a href="/doc/libs/1_34_0/libs/graph/doc/BidirectionalGraph.html">Bidirectional
+ Graph</a> concept.
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/dijkstra_shortest_paths.html"><code><span class="identifier">dijkstra_shortest_paths</span></code></a> now
+ calls <code><span class="identifier">vis</span><span class="special">.</span><span class="identifier">initialize_vertex</span></code> for each vertex during
initialization.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;em&gt;Note:&lt;/em&gt; the name of the compiled library
- for the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/read_graphviz.html"&gt;GraphViz
- reader&lt;/a&gt; has changed to &lt;tt&gt;boost_graph&lt;/tt&gt; (from &lt;tt&gt;bgl-viz&lt;/tt&gt;)
+ </li>
+ <li>
+ <em>Note:</em> the name of the compiled library
+ for the <a href="/doc/libs/1_34_0/libs/graph/doc/read_graphviz.html">GraphViz
+ reader</a> has changed to <tt>boost_graph</tt> (from <tt>bgl-viz</tt>)
to match Boost conventions.
- &lt;/li&gt;
- &lt;li&gt;
- See the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/history.html#1.34.0"&gt;complete
- revision history&lt;/a&gt; for more information.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/multi_array/index.html"&gt;MultiArray
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ See the <a href="/doc/libs/1_34_0/libs/graph/doc/history.html#1.34.0">complete
+ revision history</a> for more information.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/multi_array/index.html">MultiArray
+ Library</a>:</span>
Boost.MultiArray now by default provides range-checking for
- &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt;&lt;span class="special"&gt;[]&lt;/span&gt;&lt;/code&gt;.
- Range checking can be disabled by defining the macro &lt;code&gt;&lt;span class="identifier"&gt;BOOST_DISABLE_ASSERTS&lt;/span&gt;&lt;/code&gt;
- before including &lt;tt&gt;multi_array.hpp&lt;/tt&gt;. A bug in &lt;code&gt;&lt;span class="identifier"&gt;multi_array&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;resize&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ <code><span class="keyword">operator</span><span class="special">[]</span></code>.
+ Range checking can be disabled by defining the macro <code><span class="identifier">BOOST_DISABLE_ASSERTS</span></code>
+ before including <tt>multi_array.hpp</tt>. A bug in <code><span class="identifier">multi_array</span><span class="special">::</span><span class="identifier">resize</span><span class="special">()</span></code>
related to storage orders was fixed.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- New &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rnd_indices"&gt;random
- access indices&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Non key-based indices feature new &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rearrange"&gt;rearrange
- facilities&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span>
+ <ul>
+ <li>
+ New <a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rnd_indices">random
+ access indices</a>.
+ </li>
+ <li>
+ Non key-based indices feature new <a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rearrange">rearrange
+ facilities</a>.
+ </li>
+ <li>
This version also includes a number of optimizations and usage improvements.
- For a complete list of changes, see the library &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/release_notes.html#boost_1_34"&gt;release
- notes&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/optional/index.html"&gt;Optional Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;none_t&lt;/span&gt; &lt;span class="keyword"&gt;and&lt;/span&gt;
- &lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;none&lt;/span&gt;&lt;/code&gt; now added to Optional's documentation
- &lt;/li&gt;
- &lt;li&gt;
- Relational operators now directly support arguments of type &lt;code&gt;&lt;span class="char"&gt;'T'&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="char"&gt;'none_t'&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- operator-&amp;gt;() now also works with reference types.
- &lt;/li&gt;
- &lt;li&gt;
- Helper functions &lt;code&gt;&lt;span class="identifier"&gt;make_optional&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;val&lt;/span&gt;&lt;span class="special"&gt;),&lt;/span&gt; &lt;span class="identifier"&gt;make_optional&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;cond&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;val&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt; &lt;span class="keyword"&gt;and&lt;/span&gt; &lt;span class="identifier"&gt;get_optional_value_or&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span c
lass="identifier"&gt;opt&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;alternative_value&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;
+ For a complete list of changes, see the library <a href="/doc/libs/1_34_0/libs/multi_index/doc/release_notes.html#boost_1_34">release
+ notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/optional/index.html">Optional Library</a>:</span>
+ <ul>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">none_t</span> <span class="keyword">and</span>
+ <span class="identifier">boost</span><span class="special">::</span><span class="identifier">none</span></code> now added to Optional's documentation
+ </li>
+ <li>
+ Relational operators now directly support arguments of type <code><span class="char">'T'</span></code> and <code><span class="char">'none_t'</span></code>
+ </li>
+ <li>
+ operator-&gt;() now also works with reference types.
+ </li>
+ <li>
+ Helper functions <code><span class="identifier">make_optional</span><span class="special">(</span><span class="identifier">val</span><span class="special">),</span> <span class="identifier">make_optional</span><span class="special">(</span><span class="identifier">cond</span><span class="special">,</span><span class="identifier">val</span><span class="special">)</span> <span class="keyword">and</span> <span class="identifier">get_optional_value_or</span><span class="special">(</span><span class="identifier">opt</span><span class="special">,</span><span class="identifier">alternative_value</span><span class="special">)</span&g
t;</code>
added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Constructor taking a boolean condition (as well as a value) added.
- &lt;/li&gt;
- &lt;li&gt;
- Member function &lt;code&gt;&lt;span class="identifier"&gt;get_value_or&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;alternative_value&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt; added.
- &lt;/li&gt;
- &lt;li&gt;
- Incompatbility bug with mpl::apply&amp;lt;&amp;gt; fixed.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Member function <code><span class="identifier">get_value_or</span><span class="special">(</span><span class="identifier">alternative_value</span><span class="special">)</span></code> added.
+ </li>
+ <li>
+ Incompatbility bug with mpl::apply&lt;&gt; fixed.
+ </li>
+ <li>
Converting assignment bug with uninitialized lvalues fixed.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/parameter/index.html"&gt;Parameter
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Every ArgumentPack is now a valid &lt;a href="/doc/libs/1_34_0/libs/mpl/doc/refmanual/forward-sequence.html"&gt;MPL
- Forward Sequence.&lt;/a&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/parameter/index.html">Parameter
+ Library</a>:</span>
+ <ul>
+ <li>
+ Every ArgumentPack is now a valid <a href="/doc/libs/1_34_0/libs/mpl/doc/refmanual/forward-sequence.html">MPL
+ Forward Sequence.</a>
+ </li>
+ <li>
Support for unnamed arguments (those whose keyword is deduced from their
types) is added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for named and unnamed template arguments is added.
- &lt;/li&gt;
- &lt;li&gt;
- New overload generation macros solve the &lt;a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1385.htm"&gt;forwarding
- problem&lt;/a&gt; directly.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ New overload generation macros solve the <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1385.htm">forwarding
+ problem</a> directly.
+ </li>
+ <li>
See also the Python library changes, below.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/ptr_container/index.html"&gt;Pointer
- Container Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for serialization via &lt;a href="/doc/libs/1_34_0/libs/serialization/index.html"&gt;Boost.Serialization.&lt;/a&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/ptr_container/index.html">Pointer
+ Container Library</a>:</span>
+ <ul>
+ <li>
+ Support for serialization via <a href="/doc/libs/1_34_0/libs/serialization/index.html">Boost.Serialization.</a>
+ </li>
+ <li>
Exceptions can be disabled by defining the macro BOOST_PTR_CONTAINER_NO_EXCEPTIONS
before including any header. This macro is defined by default if BOOST_NO_EXCEPTIONS
is defined.
- &lt;/li&gt;
- &lt;li&gt;
- Additional &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;auto_ptr&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- overloads added s.t. one can also pass &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;auto_ptr&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt; instead of only &lt;code&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;/code&gt; arguments to member functions.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;transfer&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- now has weaker requirements s.t. one can transfer objects from &lt;code&gt;&lt;span class="identifier"&gt;ptr_container&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;Derived&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- to &lt;code&gt;&lt;span class="identifier"&gt;ptr_container&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;Base&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;,
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/python/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Additional <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;</span></code>
+ overloads added s.t. one can also pass <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;</span></code> instead of only <code><span class="identifier">T</span><span class="special">*</span></code> arguments to member functions.
+ </li>
+ <li>
+ <code><span class="identifier">transfer</span><span class="special">()</span></code>
+ now has weaker requirements s.t. one can transfer objects from <code><span class="identifier">ptr_container</span><span class="special">&lt;</span><span class="identifier">Derived</span><span class="special">&gt;</span></code>
+ to <code><span class="identifier">ptr_container</span><span class="special">&lt;</span><span class="identifier">Base</span><span class="special">&gt;</span></code>,
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/python/index.html">Python Library</a>:</span>
+ <ul>
+ <li>
Boost.Python now automatically appends C++ signatures to docstrings.
- The new &lt;a href="/doc/libs/1_34_0/libs/python/doc/v2/docstring_options.html"&gt;&lt;tt&gt;docstring_options.hpp&lt;/tt&gt;&lt;/a&gt;
+ The new <a href="/doc/libs/1_34_0/libs/python/doc/v2/docstring_options.html"><tt>docstring_options.hpp</tt></a>
header is available to control the content of docstrings.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/python/doc/v2/stl_iterator.html#stl_input_iterator-spec"&gt;&lt;code&gt;&lt;span class="identifier"&gt;stl_input_iterator&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;, for turning
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/python/doc/v2/stl_iterator.html#stl_input_iterator-spec"><code><span class="identifier">stl_input_iterator</span></code></a>, for turning
a Python iterable object into an STL input iterator, from Eric Niebler.
- &lt;/li&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="keyword"&gt;void&lt;/span&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ Support for <code><span class="keyword">void</span><span class="special">*</span></code>
conversions is added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Integrated support for wrapping C++ functions built with the parameter
library; keyword names are automatically known to docsstrings.
- &lt;/li&gt;
- &lt;li&gt;
- Enhancements to the API for better embedding support (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;import&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;exec&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;, and
&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;exec_file&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/signals.html"&gt;Signals Library&lt;/a&gt;:&lt;/span&gt; More
+ </li>
+ <li>
+ Enhancements to the API for better embedding support (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::</span><span class="identifier">import</span><span class="special">()</span></code>, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::</span><span class="identifier">exec</span><span class="special">()</span></code>, and <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::
</span><span class="identifier">exec_file</span><span class="special">()</span></code>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/signals.html">Signals Library</a>:</span> More
improvements to signal invocation performance from Robert Zeh.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/smart_ptr/smart_ptr.htm"&gt;Smart Pointers
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/shared_ptr.htm#allocator_constructor"&gt;Allocator
- support&lt;/a&gt; as proposed in &lt;a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1851.pdf"&gt;N1851&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/smart_ptr/smart_ptr.htm">Smart Pointers
+ Library</a>:</span>
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/smart_ptr/shared_ptr.htm#allocator_constructor">Allocator
+ support</a> as proposed in <a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1851.pdf">N1851</a>
(162 Kb PDF).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_cast.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;pointer_cast&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_to_other.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;pointer_to_other&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; utilities
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_cast.html"><code><span class="identifier">pointer_cast</span></code></a> and <a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_to_other.html"><code><span class="identifier">pointer_to_other</span></code></a> utilities
to allow pointer-independent code, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/algorithm/string/index.html"&gt;String
- Algorithm Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;lexicographical_compare&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;join&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- New comparison predicates &lt;code&gt;&lt;span class="identifier"&gt;is_less&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;is_not_greater&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Negative indexes support (like Perl) in various algorihtms (&lt;code&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;span class="identifier"&gt;_head&lt;/span&gt;&lt;span class="special"&gt;/&lt;/span&gt;&lt;span class="identifier"&gt;tail&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;span class="identifier"&gt;_nth&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/wave/index.html"&gt;Wave Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/algorithm/string/index.html">String
+ Algorithm Library</a>:</span>
+ <ul>
+ <li>
+ <code><span class="identifier">lexicographical_compare</span></code>
+ </li>
+ <li>
+ <code><span class="identifier">join</span></code>
+ </li>
+ <li>
+ New comparison predicates <code><span class="identifier">is_less</span></code>,
+ <code><span class="identifier">is_not_greater</span></code>.
+ </li>
+ <li>
+ Negative indexes support (like Perl) in various algorihtms (<code><span class="special">*</span><span class="identifier">_head</span><span class="special">/</span><span class="identifier">tail</span></code>,
+ <code><span class="special">*</span><span class="identifier">_nth</span></code>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/wave/index.html">Wave Library</a>:</span>
+ <ul>
+ <li>
Wave now correctly recognizes pp-number tokens as mandated by the C++
Standard, which are converted to C++ tokens right before they are returned
from the library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Several new preprocessing hooks have been added. For a complete description
- please refer to the related documentation page: &lt;a href="/doc/libs/1_34_0/libs/wave/doc/class_reference_ctxpolicy.html"&gt;The
- Context Policy&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ please refer to the related documentation page: <a href="/doc/libs/1_34_0/libs/wave/doc/class_reference_ctxpolicy.html">The
+ Context Policy</a>.
+ </li>
+ <li>
Shared library (dll) support has been added for the generated Wave libraries.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The overall error handling has been improved. It is now possible to recover
and continue after an error or a warning was issued.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for optional comment and/or full whitespace preservation in the
generated output stream has been added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The Wave library now performs automatic include guard detection to avoid
accessing header files more than once, if appropriate.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Full interactive mode has been added to the Wave tool. Now the Wave tool
can be used just like Python or Perl for instance to interactively try
out your BOOST_PP macros. Additionally it is now possible to load and
save the current state of an interactive session (macro tables et.al.).
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The overall performance has been improved by upto 40-60%, depending on
the concrete files to process.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for new pragmas has been added allowing to control certain library
features from inside the preprocessed sources (partial output redirection,
control of generated whitespace and #line directives).
- &lt;/li&gt;
- &lt;li&gt;
- Optional support for #pragma message &amp;quot;...&amp;quot; has been added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Optional support for #pragma message &quot;...&quot; has been added.
+ </li>
+ <li>
This version also includes a number of bug fixes and usage improvements.
- For a complete list of changes, see the libraries &lt;a href="/doc/libs/1_34_0/libs/wave/ChangeLog"&gt;change
- log&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ For a complete list of changes, see the libraries <a href="/doc/libs/1_34_0/libs/wave/ChangeLog">change
+ log</a>.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. The following compilers and platforms have been
extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression
- test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 4.0.1 on Mac OS
+ will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression
+ test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 4.0.1 on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.8.2 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org/"&gt;GNU C++&lt;/a&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org/">GNU C++</a>
+ <ul>
+ <li>
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
4.1.x on Solaris
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
3.4.x on Windows
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP aC++ A.06.14&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 9.1 on Windows, 9.0 on Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com/"&gt;Metrowerks CodeWarrior&lt;/a&gt; 9.4
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP aC++ A.06.14</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 9.1 on Windows, 9.0 on Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com/">Metrowerks CodeWarrior</a> 9.4
on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://developers.sun.com/sunstudio/compilers_index.html"&gt;Sun
- Studio 11&lt;/a&gt; on Solaris.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/thomas_witt.html"&gt;Thomas Witt&lt;/a&gt; managed this
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ <li>
+ <a href="http://developers.sun.com/sunstudio/compilers_index.html">Sun
+ Studio 11</a> on Solaris.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/thomas_witt.html">Thomas Witt</a> managed this
release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Vladimir Prus for making Boost.Build
version 2 a reality, David Abrahams for authoring a new getting started guide
and Greg D. for answering countless questions.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash,
Multi-index Containers, Graph, Signals, Thread, and Wave.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197><description><div class="description">
- &lt;div id="version_1_33_1.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/doc/html/any.html"&gt;Any Library&lt;/a&gt;:&lt;/span&gt; Cast
- to reference types introduced in 1.33.0 is now documented on &lt;code&gt;&lt;span class="identifier"&gt;any_cast&lt;/span&gt;&lt;/code&gt; documentation page.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/bind/bind.html"&gt;Bind Library&lt;/a&gt;:&lt;/span&gt; Bind
- expressions now support &lt;a href="/doc/libs/1_33_1/libs/bind/bind.html#operators"&gt;comparisons
- and negation&lt;/a&gt;. Example: &lt;code&gt;&lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_1&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;
- &lt;span class="special"&gt;&amp;lt;&lt;/span&gt; &lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_2&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/config/index.html"&gt;Config Library&lt;/a&gt;:&lt;/span&gt; Don't
- undef &lt;code&gt;&lt;span class="identifier"&gt;BOOST_LIB_TOOLSET&lt;/span&gt;&lt;/code&gt; after
+ <div id="version_1_33_1.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/doc/html/any.html">Any Library</a>:</span> Cast
+ to reference types introduced in 1.33.0 is now documented on <code><span class="identifier">any_cast</span></code> documentation page.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/bind/bind.html">Bind Library</a>:</span> Bind
+ expressions now support <a href="/doc/libs/1_33_1/libs/bind/bind.html#operators">comparisons
+ and negation</a>. Example: <code><span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_1</span><span class="special">)</span>
+ <span class="special">&lt;</span> <span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_2</span><span class="special">)</span></code>.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/config/index.html">Config Library</a>:</span> Don't
+ undef <code><span class="identifier">BOOST_LIB_TOOLSET</span></code> after
use.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/python/doc/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/python/doc/index.html">Boost.Python</a>:</span>
+ <ul>
+ <li>
The build now assumes Python 2.4 by default, rather than 2.2
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support Python that's built without Unicode support
- &lt;/li&gt;
- &lt;li&gt;
- Support for wrapping classes with overloaded address-of (&lt;code&gt;&lt;span class="special"&gt;&amp;amp;&lt;/span&gt;&lt;/code&gt;) operators
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/smart_ptr/index.html"&gt;Smart Pointer
- Library&lt;/a&gt;:&lt;/span&gt; Fixed problems under Metrowerks CodeWarrior on PowerPC (Mac
+ </li>
+ <li>
+ Support for wrapping classes with overloaded address-of (<code><span class="special">&amp;</span></code>) operators
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/smart_ptr/index.html">Smart Pointer
+ Library</a>:</span> Fixed problems under Metrowerks CodeWarrior on PowerPC (Mac
OS X) with inlining on, GNU GCC on PowerPC 64.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/regex/doc/index.html"&gt;Regex Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/regex/doc/index.html">Regex Library</a>:</span> Fixed
the supplied makefiles, and other small compiler specific changes. Refer
- to the &lt;a href="/doc/libs/1_33_1/libs/regex/doc/history.html"&gt;regex history
- page&lt;/a&gt; for more information on these and other small changes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html"&gt;Iostreams
- Library&lt;/a&gt;:&lt;/span&gt;
+ to the <a href="/doc/libs/1_33_1/libs/regex/doc/history.html">regex history
+ page</a> for more information on these and other small changes.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html">Iostreams
+ Library</a>:</span>
Improved the interface for accessing a chain's components,
- added &lt;code&gt;&lt;span class="identifier"&gt;is_open&lt;/span&gt;&lt;/code&gt; members to
+ added <code><span class="identifier">is_open</span></code> members to
the file and file descriptor devices, fixed memory-mapped files on Windows,
and made minor changes to the documentation.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/python/doc/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/python/doc/index.html">Boost.Python</a>:</span>
+ <ul>
+ <li>
Added support for docstrings on nonstatic properties.
- &lt;/li&gt;
- &lt;li&gt;
- We now export the client-provided docstrings for &lt;code&gt;&lt;span class="identifier"&gt;init&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;optional&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt; &lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- and &lt;em&gt;XXX&lt;/em&gt;&lt;code&gt;&lt;span class="identifier"&gt;_FUNCTION_OVERLOADS&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; for only the last overload.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ We now export the client-provided docstrings for <code><span class="identifier">init</span><span class="special">&lt;</span><span class="identifier">optional</span><span class="special">&lt;&gt;</span> <span class="special">&gt;</span></code>
+ and <em>XXX</em><code><span class="identifier">_FUNCTION_OVERLOADS</span><span class="special">()</span></code> for only the last overload.
+ </li>
+ <li>
Support for Embedded VC++ 4 and GCC-3.3 on MacOS added
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Introduced better support for rvalue from-python conversions of shared_ptr.
- &lt;/li&gt;
- &lt;li&gt;
- Support for exposing &lt;code&gt;&lt;span class="identifier"&gt;vector&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;*&amp;gt;&lt;/span&gt;&lt;/code&gt; with the indexing suite.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Support for exposing <code><span class="identifier">vector</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">*&gt;</span></code> with the indexing suite.
+ </li>
+ <li>
updated visual studio project build file.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added search feature to the index page.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/functional/hash/index.html"&gt;Functional/Hash
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/functional/hash/index.html">Functional/Hash
+ Library</a>:</span>
Fixed the points example.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span>
Fixed a problem with multithreaded code, and other
- minor changes. Refer to the library &lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html#boost_1_33_1"&gt;release
- notes&lt;/a&gt; for further details.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/graph/doc/table_of_contents.html"&gt;Graph
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Fixed a problem with the relaxed heap on x86 Linux (fixes bug in &lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;li&gt;
- Fixed problems with &lt;a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;cuthill_mckee_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;king_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; producing no
+ minor changes. Refer to the library <a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html#boost_1_33_1">release
+ notes</a> for further details.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/graph/doc/table_of_contents.html">Graph
+ Library</a>:</span>
+ <ul>
+ <li>
+ Fixed a problem with the relaxed heap on x86 Linux (fixes bug in <code><span class="identifier">dijkstra_shortest_paths</span></code>).
+ </li>
+ <li>
+ Fixed problems with <a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"><code><span class="identifier">cuthill_mckee_ordering</span></code></a> and
+ <a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"><code><span class="identifier">king_ordering</span></code></a> producing no
results.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;code&gt;&lt;span class="identifier"&gt;color_map&lt;/span&gt;&lt;/code&gt; parameter
- to &lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/signals/doc/index.html"&gt;Signals
- Library&lt;/a&gt;:&lt;/span&gt; Fixed problems with the use of Signals across shared library
+ </li>
+ <li>
+ Added <code><span class="identifier">color_map</span></code> parameter
+ to <code><span class="identifier">dijkstra_shortest_paths</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/signals/doc/index.html">Signals
+ Library</a>:</span> Fixed problems with the use of Signals across shared library
boundaries.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/thread/doc/index.html"&gt;Thread library&lt;/a&gt;:&lt;/span&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;read_write_mutex&lt;/span&gt;&lt;/code&gt; has been removed due to
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/thread/doc/index.html">Thread library</a>:</span>
+ <code><span class="identifier">read_write_mutex</span></code> has been removed due to
problems with deadlocks.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/wave/index.html"&gt;Wave library&lt;/a&gt;
- (V1.2.1):&lt;/span&gt; Fixed a couple of problems, refer to the &lt;a href="/doc/libs/1_33_1/libs/wave/ChangeLog"&gt;change
- log&lt;/a&gt; for further details.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_1.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/wave/index.html">Wave library</a>
+ (V1.2.1):</span> Fixed a couple of problems, refer to the <a href="/doc/libs/1_33_1/libs/wave/ChangeLog">change
+ log</a> for further details.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_1.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. The following compilers and platforms have been
extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression
- test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;p&gt;
- &lt;em&gt;New for this release&lt;/em&gt;: Support for building
+ will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression
+ test results</a>.
+ </p>
+ <p>
+ <em>New for this release</em>: Support for building
with the newest STLport-5.0 was added. The support includes building with MinGW
Runtime 3.8 plus STLport-5.0 improved to support wide character operations.
Apple GCC 4.0, HP Tru64 C++, and Microsoft Visual C++ 8.0 are supported platforms.
- We have added an experimental autoconf-like &lt;tt&gt;configure&lt;/tt&gt; script
- for Unix-like systems: run &lt;tt&gt;configure --help&lt;/tt&gt; for more information.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 3.3, 4.0 on Mac
+ We have added an experimental autoconf-like <tt>configure</tt> script
+ for Unix-like systems: run <tt>configure --help</tt> for more information.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 3.3, 4.0 on Mac
OS X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.6.4 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org"&gt;GNU C++&lt;/a&gt; 2.95.3 (with and without
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org">GNU C++</a> 2.95.3 (with and without
STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 8.1, 9.0 on Windows, Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com"&gt;Metrowerks CodeWarrior&lt;/a&gt; 8.3,
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 8.1, 9.0 on Windows, Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com">Metrowerks CodeWarrior</a> 8.3,
9.4, 9.5 on Mac OS X and Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_1.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;span class="inset-left"&gt;&lt;img alt="Medieval Mr. Gregor" src="/gfx/boost_1_33_0.jpg"/&gt;&lt;/span&gt;
-&lt;a href="/users/people/doug_gregor.html"&gt;Douglas
- Gregor&lt;/a&gt; managed this release.
- &lt;/p&gt;
- &lt;p&gt;
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_1.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <span class="inset-left"><img alt="Medieval Mr. Gregor" src="/gfx/boost_1_33_0.jpg"/></span>
+<a href="/users/people/doug_gregor.html">Douglas
+ Gregor</a> managed this release.
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
managed to keep the regression testing system working throughout the release
process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek Kozicki, Rene
Rivera and Jonathan Turkanis for greatly improving the quality of this release;
- Rene Rivera for the new Boost web page design; and Zoltan &amp;quot;cad&amp;quot; Juhasz
+ Rene Rivera for the new Boost web page design; and Zoltan &quot;cad&quot; Juhasz
for the new Boost logo.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.33.0</title><pubDate>Thu, 11 Aug 2005 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.33.0</title><pubDate>Thu, 11 Aug 2005 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Iostream, Hash, Parameter, Pointer Container, Wave. Updated
Libraries: Any, Assignment, Bind, Date-Time, Graph, Multi-Index, Program Options,
Property Map, Python, Random Number, Range, Regex, Serialization, Signals.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655><description><div class="description">
- &lt;div id="version_1_33_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html"&gt;Iostreams
- Library&lt;/a&gt;:&lt;/span&gt;
+ <div id="version_1_33_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html">Iostreams
+ Library</a>:</span>
Framework for defining streams, stream buffers and i/o filters,
from Jonathan Turkanis.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/functional/hash/index.html"&gt;Functional/Hash
- Library&lt;/a&gt;:&lt;/span&gt; A TR1 hash function object that can be extended to hash user
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/functional/hash/index.html">Functional/Hash
+ Library</a>:</span> A TR1 hash function object that can be extended to hash user
defined types, from Daniel James.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/parameter/doc/html/index.html"&gt;Parameter
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/parameter/doc/html/index.html">Parameter
+ Library</a>:</span>
Write functions that accept arguments by name: especially
useful when a function has more than one argument with a useful default value,
since named arguments can be passed in any order.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/ptr_container/index.html"&gt;Pointer
- Container Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/ptr_container/index.html">Pointer
+ Container Library</a>:</span>
Containers for storing heap-allocated polymorphic
objects to ease OO-programming, from Thorsten Ottosen.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/wave/index.html"&gt;Wave&lt;/a&gt;:&lt;/span&gt; Standards
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/wave/index.html">Wave</a>:</span> Standards
conformant implementation of the mandated C99/C++ preprocessor functionality
packed behind an easy to use iterator interface, from Hartmut Kaiser.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/doc/html/any.html"&gt;Any Library&lt;/a&gt;:&lt;/span&gt; &lt;code&gt;&lt;span class="identifier"&gt;any_cast&lt;/span&gt;&lt;/code&gt; has been enhanced to allow direct
- access to &lt;code&gt;&lt;span class="identifier"&gt;any&lt;/span&gt;&lt;/code&gt;'s held value.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/assign/doc/index.html"&gt;Assignment
- Library&lt;/a&gt;:&lt;/span&gt; Support for &lt;a href="/doc/libs/1_33_1/libs/ptr_container/index.html"&gt;Pointer
- Container Library&lt;/a&gt; and new efficient functions &lt;code&gt;&lt;span class="identifier"&gt;ref_list_of&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="identifier"&gt;cref_list_of&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; for generating anonymous ranges.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/bind/bind.html"&gt;Bind Library&lt;/a&gt;:&lt;/span&gt; Bind
- expressions now support &lt;a href="/doc/libs/1_33_1/libs/bind/bind.html#operators"&gt;comparisons
- and negation&lt;/a&gt;. Example: &lt;code&gt;&lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_1&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;
- &lt;span class="special"&gt;&amp;lt;&lt;/span&gt; &lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_2&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/doc/html/date_time.html"&gt;Date-Time Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Added &lt;a href="/doc/libs/1_33_1/doc/html/date_time/local_time.html"&gt;local
- time and time zone classes&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;a href="/doc/libs/1_33_1/doc/html/date_time/date_time_io.html"&gt;format-based
- Input/Output facets&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- For a complete list of changes, see the library &lt;a href="/doc/libs/1_33_1/doc/html/date_time/details.html#date_time.changes"&gt;change
- history&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt; Introduced
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/doc/html/any.html">Any Library</a>:</span> <code><span class="identifier">any_cast</span></code> has been enhanced to allow direct
+ access to <code><span class="identifier">any</span></code>'s held value.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/assign/doc/index.html">Assignment
+ Library</a>:</span> Support for <a href="/doc/libs/1_33_1/libs/ptr_container/index.html">Pointer
+ Container Library</a> and new efficient functions <code><span class="identifier">ref_list_of</span><span class="special">()</span></code> and <code><span class="identifier">cref_list_of</span><span class="special">()</span></code> for generating anonymous ranges.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/bind/bind.html">Bind Library</a>:</span> Bind
+ expressions now support <a href="/doc/libs/1_33_1/libs/bind/bind.html#operators">comparisons
+ and negation</a>. Example: <code><span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_1</span><span class="special">)</span>
+ <span class="special">&lt;</span> <span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_2</span><span class="special">)</span></code>.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/doc/html/date_time.html">Date-Time Library</a>:</span>
+ <ul>
+ <li>
+ Added <a href="/doc/libs/1_33_1/doc/html/date_time/local_time.html">local
+ time and time zone classes</a>.
+ </li>
+ <li>
+ Added <a href="/doc/libs/1_33_1/doc/html/date_time/date_time_io.html">format-based
+ Input/Output facets</a>.
+ </li>
+ <li>
+ For a complete list of changes, see the library <a href="/doc/libs/1_33_1/doc/html/date_time/details.html#date_time.changes">change
+ history</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/graph/doc/index.html">Graph Library</a>:</span> Introduced
several new algorithms and improved existing algorithms:
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/python.html"&gt;Experimental
- Python bindings&lt;/a&gt;, from Doug Gregor and Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/floyd_warshall_shortest.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;floyd&lt;/span&gt; &lt;span class="identifier"&gt;warshall&lt;/span&gt;
- &lt;span class="identifier"&gt;all&lt;/span&gt; &lt;span class="identifier"&gt;pairs&lt;/span&gt;
- &lt;span class="identifier"&gt;shortest&lt;/span&gt; &lt;span class="identifier"&gt;paths&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ <ul>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/python.html">Experimental
+ Python bindings</a>, from Doug Gregor and Indiana University.
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/floyd_warshall_shortest.html"><code><span class="identifier">floyd</span> <span class="identifier">warshall</span>
+ <span class="identifier">all</span> <span class="identifier">pairs</span>
+ <span class="identifier">shortest</span> <span class="identifier">paths</span></code></a>,
from Lauren Foutz and Scott Hill.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/astar_search.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;astar&lt;/span&gt; &lt;span class="identifier"&gt;search&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/astar_search.html"><code><span class="identifier">astar</span> <span class="identifier">search</span></code></a>,
from Kristopher Beevers and Jufeng Peng.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/fruchterman_reingold.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;fruchterman&lt;/span&gt; &lt;span class="identifier"&gt;reingold&lt;/span&gt;
- &lt;span class="identifier"&gt;force&lt;/span&gt; &lt;span class="identifier"&gt;directed&lt;/span&gt;
- &lt;span class="identifier"&gt;layout&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;, from Doug Gregor
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/fruchterman_reingold.html"><code><span class="identifier">fruchterman</span> <span class="identifier">reingold</span>
+ <span class="identifier">force</span> <span class="identifier">directed</span>
+ <span class="identifier">layout</span></code></a>, from Doug Gregor
and Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/biconnected_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;biconnected&lt;/span&gt; &lt;span class="identifier"&gt;components&lt;/span&gt;&lt;/code&gt;
- and &lt;code&gt;&lt;span class="identifier"&gt;articulation&lt;/span&gt; &lt;span class="identifier"&gt;points&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/biconnected_components.html"><code><span class="identifier">biconnected</span> <span class="identifier">components</span></code>
+ and <code><span class="identifier">articulation</span> <span class="identifier">points</span></code></a>,
from Jeremy Siek, Janusz Piwowarski, and Doug Gregor.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/sequential_vertex_coloring.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;sequential&lt;/span&gt; &lt;span class="identifier"&gt;vertex&lt;/span&gt;
- &lt;span class="identifier"&gt;coloring&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; has been updated,
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/sequential_vertex_coloring.html"><code><span class="identifier">sequential</span> <span class="identifier">vertex</span>
+ <span class="identifier">coloring</span></code></a> has been updated,
tested, and documented.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/gursoy_atun_layout.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;gursoy&lt;/span&gt; &lt;span class="identifier"&gt;atun&lt;/span&gt;
- &lt;span class="identifier"&gt;layout&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;, from Jeremiah
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/gursoy_atun_layout.html"><code><span class="identifier">gursoy</span> <span class="identifier">atun</span>
+ <span class="identifier">layout</span></code></a>, from Jeremiah
Willcock and Doug Gregor of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;king&lt;/span&gt; &lt;span class="identifier"&gt;ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"><code><span class="identifier">king</span> <span class="identifier">ordering</span></code></a>,
from D. Kevin McGrath of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;cuthill&lt;/span&gt; &lt;span class="identifier"&gt;mckee&lt;/span&gt;
- &lt;span class="identifier"&gt;ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; has been recast
- as an invocation of &lt;code&gt;&lt;span class="identifier"&gt;breadth&lt;/span&gt;
- &lt;span class="identifier"&gt;first&lt;/span&gt; &lt;span class="identifier"&gt;search&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"><code><span class="identifier">cuthill</span> <span class="identifier">mckee</span>
+ <span class="identifier">ordering</span></code></a> has been recast
+ as an invocation of <code><span class="identifier">breadth</span>
+ <span class="identifier">first</span> <span class="identifier">search</span></code>
and now supports graphs with multiple components.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/dijkstra_shortest_paths.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;dijkstra&lt;/span&gt; &lt;span class="identifier"&gt;shortest&lt;/span&gt;
- &lt;span class="identifier"&gt;paths&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now uses a relaxed
- heap [&lt;a href="/doc/libs/1_33_1/libs/graph/doc/bibliography.html#driscoll88"&gt;61&lt;/a&gt;]
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/dijkstra_shortest_paths.html"><code><span class="identifier">dijkstra</span> <span class="identifier">shortest</span>
+ <span class="identifier">paths</span></code></a> now uses a relaxed
+ heap [<a href="/doc/libs/1_33_1/libs/graph/doc/bibliography.html#driscoll88">61</a>]
as its priority queue, improving its complexity to O(V log V) and improving
real-world performance for larger graphs.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/read_graphviz.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;read&lt;/span&gt; &lt;span class="identifier"&gt;graphviz&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/read_graphviz.html"><code><span class="identifier">read</span> <span class="identifier">graphviz</span></code></a>
now has a new, Spirit-based parser that works for all graph types and
supports arbitrary properties on the graph, from Ron Garcia. The old,
Bison-based GraphViz reader has been deprecated and will be removed in
- a future Boost release. &lt;a href="/doc/libs/1_33_1/libs/graph/doc/write-graphviz.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;write&lt;/span&gt; &lt;span class="identifier"&gt;graphviz&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ a future Boost release. <a href="/doc/libs/1_33_1/libs/graph/doc/write-graphviz.html"><code><span class="identifier">write</span> <span class="identifier">graphviz</span></code></a>
also supports dynamic properties.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/subgraph.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;subgraph&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;: &lt;code&gt;&lt;span class="identifier"&gt;get_property&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_33_1/libs/graph/doc/subgraph.html"><code><span class="identifier">subgraph</span></code></a>: <code><span class="identifier">get_property</span></code>
now refers to the subgraph property, not the root graph's property.
- &lt;/li&gt;
- &lt;li&gt;
- See the &lt;a href="/doc/libs/1_33_1/libs/graph/doc/history.html#by-version"&gt;history&lt;/a&gt;
+ </li>
+ <li>
+ See the <a href="/doc/libs/1_33_1/libs/graph/doc/history.html#by-version">history</a>
for additional changes and bug fixes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- New &lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/tutorial/indices.html#hashed_indices"&gt;hashed
- indices&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/tutorial/creation.html#serialization"&gt;serialization
- support&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- For a complete list of changes, see the library &lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html"&gt;release
- notes&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/program_options/doc/index.html"&gt;Program
- Options Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span>
+ <ul>
+ <li>
+ New <a href="/doc/libs/1_33_1/libs/multi_index/doc/tutorial/indices.html#hashed_indices">hashed
+ indices</a>.
+ </li>
+ <li>
+ Added <a href="/doc/libs/1_33_1/libs/multi_index/doc/tutorial/creation.html#serialization">serialization
+ support</a>.
+ </li>
+ <li>
+ For a complete list of changes, see the library <a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html">release
+ notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/program_options/doc/index.html">Program
+ Options Library</a>:</span>
+ <ul>
+ <li>
Option descriptions are now printed with word wrapping.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Command line parser can bypass unregistered options, instread of throwing.
- &lt;/li&gt;
- &lt;li&gt;
- Removed support for &amp;quot;implicit&amp;quot; (optional) values.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Removed support for &quot;implicit&quot; (optional) values.
+ </li>
+ <li>
New customization method 'command_line_parser::extra_style_parser'. Unlike
'additional_parser', allows the user to parse several tokens and return
a vector of options, not just a single option.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Work with disabled exceptions.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/property_map/property_map.html"&gt;Property
- Map Library&lt;/a&gt;:&lt;/span&gt; Introduced the &lt;a href="/doc/libs/1_33_1/libs/property_map/doc/dynamic_property_map.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;dynamic&lt;/span&gt; &lt;span class="identifier"&gt;properties&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/property_map/property_map.html">Property
+ Map Library</a>:</span> Introduced the <a href="/doc/libs/1_33_1/libs/property_map/doc/dynamic_property_map.html"><code><span class="identifier">dynamic</span> <span class="identifier">properties</span></code></a>
class, which provides dynamically-typed access to a set of property maps.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/python/doc/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/python/doc/index.html">Boost.Python</a>:</span>
+ <ul>
+ <li>
Added support for docstrings on nonstatic properties.
- &lt;/li&gt;
- &lt;li&gt;
- We now export the client-provided docstrings for &lt;code&gt;&lt;span class="identifier"&gt;init&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;optional&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt; &lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- and &lt;em&gt;XXX&lt;/em&gt;&lt;code&gt;&lt;span class="identifier"&gt;_FUNCTION_OVERLOADS&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; for only the last overload.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ We now export the client-provided docstrings for <code><span class="identifier">init</span><span class="special">&lt;</span><span class="identifier">optional</span><span class="special">&lt;&gt;</span> <span class="special">&gt;</span></code>
+ and <em>XXX</em><code><span class="identifier">_FUNCTION_OVERLOADS</span><span class="special">()</span></code> for only the last overload.
+ </li>
+ <li>
Support for Embedded VC++ 4 and GCC-3.3 on MacOS added
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Introduced better support for rvalue from-python conversions of shared_ptr.
- &lt;/li&gt;
- &lt;li&gt;
- Support for exposing &lt;code&gt;&lt;span class="identifier"&gt;vector&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;*&amp;gt;&lt;/span&gt;&lt;/code&gt; with the indexing suite.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Support for exposing <code><span class="identifier">vector</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">*&gt;</span></code> with the indexing suite.
+ </li>
+ <li>
updated visual studio project build file.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added search feature to the index page.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;p&gt;&lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/random/index.html"&gt;Random Number
- Library&lt;/a&gt;:&lt;/span&gt;
- Improved initialization for &lt;code&gt;&lt;span class="identifier"&gt;mersenne_twister&lt;/span&gt;&lt;/code&gt;,
+ </li>
+ </ul>
+ </li>
+ <li>
+ <p><span class="library"><a href="/doc/libs/1_33_1/libs/random/index.html">Random Number
+ Library</a>:</span>
+ Improved initialization for <code><span class="identifier">mersenne_twister</span></code>,
algorithm by Makoto Matsumoto and Takuji Nishimura, implemented for Boost
- by Jens Maurer.&lt;/p&gt;
- &lt;p&gt;Note: All test vectors for &lt;code&gt;&lt;span class="identifier"&gt;mersenne_twister&lt;/span&gt;&lt;/code&gt;s
- constructed or seeded without parameters or with a single &lt;code&gt;&lt;span class="keyword"&gt;unsigned&lt;/span&gt;
- &lt;span class="keyword"&gt;int&lt;/span&gt;&lt;/code&gt; parameter become invalid.&lt;/p&gt;
+ by Jens Maurer.</p>
+ <p>Note: All test vectors for <code><span class="identifier">mersenne_twister</span></code>s
+ constructed or seeded without parameters or with a single <code><span class="keyword">unsigned</span>
+ <span class="keyword">int</span></code> parameter become invalid.</p>
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/range/index.html"&gt;Range Library&lt;/a&gt;:&lt;/span&gt; Minor
- addition of convenience functions to &lt;code&gt;&lt;span class="identifier"&gt;iterator&lt;/span&gt;
- &lt;span class="identifier"&gt;range&lt;/span&gt;&lt;/code&gt; like &lt;code&gt;&lt;span class="identifier"&gt;front&lt;/span&gt;&lt;span class="special"&gt;(),&lt;/span&gt; &lt;span class="identifier"&gt;back&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt;&lt;span class="special"&gt;[]()&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/regex/index.html"&gt;Regex Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/range/index.html">Range Library</a>:</span> Minor
+ addition of convenience functions to <code><span class="identifier">iterator</span>
+ <span class="identifier">range</span></code> like <code><span class="identifier">front</span><span class="special">(),</span> <span class="identifier">back</span><span class="special">()</span></code> and <code><span class="keyword">operator</span><span class="special">[]()</span></code>.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/regex/index.html">Regex Library</a>:</span>
+ <ul>
+ <li>
Rewritten front end parser now supports (?imsx-imsx) constructs, plus
lookbehind assertions and conditional expressions.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Thin wrapper classes improve integration with MFC/ATL code.
- &lt;/li&gt;
- &lt;li&gt;
- Full (optional) Unicode support via the ICU library. Refer to the &lt;a href="/doc/libs/1_33_1/libs/regex/doc/history.html"&gt;regex history page&lt;/a&gt;
+ </li>
+ <li>
+ Full (optional) Unicode support via the ICU library. Refer to the <a href="/doc/libs/1_33_1/libs/regex/doc/history.html">regex history page</a>
for more information on these and other small changes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/serialization/doc/index.html"&gt;Serialization
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/serialization/doc/index.html">Serialization
+ Library</a>:</span>
+ <ul>
+ <li>
DLL version.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Auto-linking.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Serialization of variants.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Improved serialization of shared pointers.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/doc/html/signals.html"&gt;Signals Library&lt;/a&gt;:&lt;/span&gt; added
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/doc/html/signals.html">Signals Library</a>:</span> added
slot blocking/unblocking, from Frantz Maerten. Huge improvements to signal
invocation performance from Robert Zeh.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_0.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_0.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. The following compilers and platforms have been
extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression
- test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 3.x on Mac OS
+ will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression
+ test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 3.x on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.6.4 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org"&gt;GNU C++&lt;/a&gt; 2.95.3 (with and without
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org">GNU C++</a> 2.95.3 (with and without
STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 8.1, 9.0 on Windows, Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com"&gt;Metrowerks CodeWarrior&lt;/a&gt; 8.3,
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 8.1, 9.0 on Windows, Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com">Metrowerks CodeWarrior</a> 8.3,
9.4, 9.5 on Mac OS X and Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0 beta. Note: due to intermittent
problems with Visual C++ 8.0 beta, and the presence of a variety of pre-release
compiler builds, we are unable to guarantee compatibility until the final
compiler is released.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;img alt="[]" src="/gfx/boost_1_33_0.jpg"/&gt;&lt;a href="/users/people/doug_gregor.html"&gt;Douglas Gregor&lt;/a&gt;
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <img alt="[]" src="/gfx/boost_1_33_0.jpg"/><a href="/users/people/doug_gregor.html">Douglas Gregor</a>
managed this release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
managed to keep the regression testing system working throughout the release
process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Rene Rivera and Jonathan
Turkanis for greatly improving the quality of this release; Rene Rivera for
- the new Boost web page design; and Zoltan &amp;quot;cad&amp;quot; Juhasz for the new
+ the new Boost web page design; and Zoltan &quot;cad&quot; Juhasz for the new
Boost logo.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.32.0</title><pubDate>Fri, 19 Nov 2004 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.32.0</title><pubDate>Fri, 19 Nov 2004 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Assignment, Minmax, Multi-Index, Numeric Conversion, Program
Options, Range, Serialization, String, Tribool. Updated Libraries: Graph, MPL,
Python, Signals, Utility, Test. Removed Libraries: Compose.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047><description><div class="description">
- &lt;div id="version_1_32_0.important___new_toolset_names"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Important
- - New Toolset Names&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- The names of some the Boost.Build &lt;a href="/doc/libs/1_32_0/more/getting_started.html#Tools"&gt;toolsets&lt;/a&gt;
- have been changed to remove the &amp;quot;&lt;tt&gt;.&lt;/tt&gt;&amp;quot; (dot) character
- and to fix some other naming inconsistencies. For example, &lt;tt&gt;vc7.1&lt;/tt&gt;
- toolset was renamed to become &lt;tt&gt;vc-7_1&lt;/tt&gt;. Please refer to the
- &lt;a href="/doc/libs/1_32_0/more/getting_started.html#Tools"&gt;Supported Toolsets&lt;/a&gt;
+ <div id="version_1_32_0.important___new_toolset_names">
+ <h3><span class="link">Important
+ - New Toolset Names</span></h3>
+ <p>
+ The names of some the Boost.Build <a href="/doc/libs/1_32_0/more/getting_started.html#Tools">toolsets</a>
+ have been changed to remove the &quot;<tt>.</tt>&quot; (dot) character
+ and to fix some other naming inconsistencies. For example, <tt>vc7.1</tt>
+ toolset was renamed to become <tt>vc-7_1</tt>. Please refer to the
+ <a href="/doc/libs/1_32_0/more/getting_started.html#Tools">Supported Toolsets</a>
section of the installation guide for the complete list of the current toolset
names. This change was made as a part of the effort to make the Boost distribution
compatible with ISO 9660 level 2 requirements.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="version_1_32_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/assign/index.html"&gt;Assignment Library&lt;/a&gt;:&lt;/span&gt; Filling
+ </p>
+ </div>
+ <div id="version_1_32_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/assign/index.html">Assignment Library</a>:</span> Filling
containers with constant or generated data has never been easier, from Thorsten
Ottosen.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/algorithm/minmax/index.html"&gt;Minmax
- Library&lt;/a&gt;:&lt;/span&gt; Standard library extensions for simultaneous min/max and
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/algorithm/minmax/index.html">Minmax
+ Library</a>:</span> Standard library extensions for simultaneous min/max and
min/max element computations, from Herve Bronnimann.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt; Containers with multiple STL-compatible access
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span> Containers with multiple STL-compatible access
interfaces, from Joaquin M Lopez Munoz.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/numeric/conversion/index.html"&gt;Numeric
- Conversion Library&lt;/a&gt;:&lt;/span&gt; Optimized policy-based numeric conversions, from
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/numeric/conversion/index.html">Numeric
+ Conversion Library</a>:</span> Optimized policy-based numeric conversions, from
Fernando Cacciola.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/doc/html/program_options.html"&gt;Program
- Options Library&lt;/a&gt;:&lt;/span&gt; Access to configuration data given on command line,
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/doc/html/program_options.html">Program
+ Options Library</a>:</span> Access to configuration data given on command line,
in config files and other sources, from Vladimir Prus.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/range/index.html"&gt;Range Library&lt;/a&gt;:&lt;/span&gt; a
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/range/index.html">Range Library</a>:</span> a
new infrastructure for generic algorithms that builds on top of the new iterator
concepts, from Thorsten Ottosen.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/serialization/doc/index.html"&gt;Serialization
- Library&lt;/a&gt;:&lt;/span&gt; Serialization/de-serialization of arbitrary C++ data structures
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/serialization/doc/index.html">Serialization
+ Library</a>:</span> Serialization/de-serialization of arbitrary C++ data structures
to various formats including text, binary, and xml, from Robert Ramey.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/algorithm/string/index.html"&gt;String
- Algorithms Library&lt;/a&gt;:&lt;/span&gt; Collection of string related algorithms for case
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/algorithm/string/index.html">String
+ Algorithms Library</a>:</span> Collection of string related algorithms for case
conversion, trimming, find/replace operations and more, from Pavol Droba.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/doc/html/tribool.html"&gt;Tribool&lt;/a&gt;:&lt;/span&gt; 3-state
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/doc/html/tribool.html">Tribool</a>:</span> 3-state
boolean type library, from Doug Gregor.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_32_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_32_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
Compose: This deprecated library has been removed.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/graph/index.html"&gt;Graph&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Added &lt;a href="/doc/libs/1_32_0/libs/graph/doc/bundles.html"&gt;bundled
- properties&lt;/a&gt; to the &lt;a href="/doc/libs/1_32_0/libs/graph/doc/adjacency_list.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_list&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and &lt;a href="/doc/libs/1_32_0/libs/graph/doc/adjacency_matrix.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_matrix&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; class templates,
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/graph/index.html">Graph</a>:</span>
+ <ul>
+ <li>
+ Added <a href="/doc/libs/1_32_0/libs/graph/doc/bundles.html">bundled
+ properties</a> to the <a href="/doc/libs/1_32_0/libs/graph/doc/adjacency_list.html"><code><span class="identifier">adjacency_list</span></code></a> and <a href="/doc/libs/1_32_0/libs/graph/doc/adjacency_matrix.html"><code><span class="identifier">adjacency_matrix</span></code></a> class templates,
greatly simplifying the introduction of internal vertex and edge properties.
- &lt;/li&gt;
- &lt;li&gt;
- The &lt;a href="/doc/libs/1_32_0/libs/graph/doc/leda_conversion.html"&gt;LEDA
- graph adaptors&lt;/a&gt; have been ported to LEDA 4.5.
- &lt;/li&gt;
- &lt;li&gt;
- Added algorithms for &lt;a href="/doc/libs/1_32_0/libs/graph/doc/betweenness_centrality.html"&gt;betweenness
- centrality&lt;/a&gt; and &lt;a href="/doc/libs/1_32_0/libs/graph/doc/bc_clustering.html"&gt;betweenness
- centrality clustering&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;a href="/doc/libs/1_32_0/libs/graph/doc/circle_layout.html"&gt;circle
- layout&lt;/a&gt; and &lt;a href="/doc/libs/1_32_0/libs/graph/doc/kamada_kawai_spring_layout.html"&gt;undirected
- spring layout&lt;/a&gt; algorithms.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/mpl/doc/index.html"&gt;MPL Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ The <a href="/doc/libs/1_32_0/libs/graph/doc/leda_conversion.html">LEDA
+ graph adaptors</a> have been ported to LEDA 4.5.
+ </li>
+ <li>
+ Added algorithms for <a href="/doc/libs/1_32_0/libs/graph/doc/betweenness_centrality.html">betweenness
+ centrality</a> and <a href="/doc/libs/1_32_0/libs/graph/doc/bc_clustering.html">betweenness
+ centrality clustering</a>.
+ </li>
+ <li>
+ Added <a href="/doc/libs/1_32_0/libs/graph/doc/circle_layout.html">circle
+ layout</a> and <a href="/doc/libs/1_32_0/libs/graph/doc/kamada_kawai_spring_layout.html">undirected
+ spring layout</a> algorithms.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/mpl/doc/index.html">MPL Library</a>:</span>
+ <ul>
+ <li>
Updated to use the Boost Software License.
- &lt;/li&gt;
- &lt;li&gt;
- New &lt;a href="/doc/libs/1_32_0/libs/mpl/doc/index.html"&gt;documentation&lt;/a&gt;,
- including a complete &lt;a href="/doc/libs/1_32_0/libs/mpl/doc/refmanual.html"&gt;reference
- manual.&lt;/a&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ New <a href="/doc/libs/1_32_0/libs/mpl/doc/index.html">documentation</a>,
+ including a complete <a href="/doc/libs/1_32_0/libs/mpl/doc/refmanual.html">reference
+ manual.</a>
+ </li>
+ <li>
Major interface changes and improvements, many of which are not backward
- compatible. Please refer to the &lt;a href="/doc/libs/1_32_0/libs/mpl/doc/tutorial/changes-in-boost-1-32-0.html"&gt;1.32
- changelog&lt;/a&gt; for the detailed information about upgrading to the
+ compatible. Please refer to the <a href="/doc/libs/1_32_0/libs/mpl/doc/tutorial/changes-in-boost-1-32-0.html">1.32
+ changelog</a> for the detailed information about upgrading to the
new version.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/python/doc/index.html">Python Library</a>:</span>
+ <ul>
+ <li>
Updated to use the Boost Software License.
- &lt;/li&gt;
- &lt;li&gt;
- a new, &lt;a href="/doc/libs/1_32_0/libs/python/doc/tutorial/doc/html/python/exposing.html#python.class_virtual_functions"&gt;better
- method of wrapping classes with virtual functions&lt;/a&gt; has been implemented.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ a new, <a href="/doc/libs/1_32_0/libs/python/doc/tutorial/doc/html/python/exposing.html#python.class_virtual_functions">better
+ method of wrapping classes with virtual functions</a> has been implemented.
+ </li>
+ <li>
Support for the new Python Bool type, thanks to Daniel Holth.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for upcoming GCC symbol export control features have been folded
in, thanks to Niall Douglas.
- &lt;/li&gt;
- &lt;li&gt;
- Improved support for &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;auto_ptr&lt;/span&gt;&lt;/code&gt;-like
+ </li>
+ <li>
+ Improved support for <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span></code>-like
types.
- &lt;/li&gt;
- &lt;li&gt;
- Components used by other libraries have been moved out of &lt;tt&gt;python/detail&lt;/tt&gt;
- and into &lt;tt&gt;boost/detail&lt;/tt&gt; to improve dependency relationships.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Components used by other libraries have been moved out of <tt>python/detail</tt>
+ and into <tt>boost/detail</tt> to improve dependency relationships.
+ </li>
+ <li>
Miscellaneous bug fixes and compiler workarounds.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/doc/html/signals.html"&gt;Signals Library&lt;/a&gt;:&lt;/span&gt; Introduced
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/doc/html/signals.html">Signals Library</a>:</span> Introduced
deterministic slot ordering, permitting slots to be connected at the beginning
or end of slot groups or the slot list itself. Combiners may safely have
state and are accessible from the signal.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/utility/utility.htm"&gt;Utility&lt;/a&gt;:&lt;/span&gt; class
- template &lt;a href="/doc/libs/1_32_0/libs/utility/utility.htm#result_of"&gt;result_of&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/utility/utility.htm">Utility</a>:</span> class
+ template <a href="/doc/libs/1_32_0/libs/utility/utility.htm#result_of">result_of</a>
added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_32_0/libs/test/index.html"&gt;Test Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;namespace names gets shorten; old one still supported till next
- release&lt;/li&gt;
- &lt;li&gt;added proper encoding of XML PCDATA&lt;/li&gt;
- &lt;li&gt;support for wide string comparison implemented&lt;/li&gt;
- &lt;/ul&gt;
- &lt;p&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_32_0/libs/test/index.html">Test Library</a>:</span>
+ <ul>
+ <li>namespace names gets shorten; old one still supported till next
+ release</li>
+ <li>added proper encoding of XML PCDATA</li>
+ <li>support for wide string comparison implemented</li>
+ </ul>
+ <p>
For complete list of changes see Test Library
- &lt;a href="/doc/libs/1_32_0/libs/test/doc/release_notes.html#v1_32_0"&gt;release notes&lt;/a&gt;.
- &lt;/p&gt;
+ <a href="/doc/libs/1_32_0/libs/test/doc/release_notes.html#v1_32_0">release notes</a>.
+ </p>
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_32_0.regression_tests"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Regression tests&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_32_0.regression_tests">
+ <h3><span class="link">Regression tests</span></h3>
+ <p>
This release has been extensively tested on a variety of different compilers
and platforms. It is known to contain no regressions against the previous reference
release on the compilers and configurations tested. Please refer to the corresponding
- &lt;a href="http://www.meta-comm.com/engineering/boost-regression/1_32_0/index.html"&gt;regression
- reports&lt;/a&gt; to see how well your compiler performs on the new Boost codebase.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="version_1_32_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;img alt="[]" src="http://boost.sourceforge.net/photos/aleksey_gurtovoy2.jpg"/&gt; &lt;a href="/users/people/aleksey_gurtovoy.html"&gt;Aleksey
- Gurtovoy&lt;/a&gt; managed this release. &lt;a href="/doc/libs/1_32_0/more/release_procedures.htm"&gt;Managing
- a release&lt;/a&gt; at all is an enormous job, and Aleksey always goes beyond
+ <a href="http://www.meta-comm.com/engineering/boost-regression/1_32_0/index.html">regression
+ reports</a> to see how well your compiler performs on the new Boost codebase.
+ </p>
+ </div>
+ <div id="version_1_32_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <img alt="[]" src="http://boost.sourceforge.net/photos/aleksey_gurtovoy2.jpg"/> <a href="/users/people/aleksey_gurtovoy.html">Aleksey
+ Gurtovoy</a> managed this release. <a href="/doc/libs/1_32_0/more/release_procedures.htm">Managing
+ a release</a> at all is an enormous job, and Aleksey always goes beyond
merely meeting requirements by insisting on the highest possible quality. The
Boost membership owes him a debt of gratitude.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
This release wouldn't have been possible without the dedicated effort of many,
many members of the Boost community who generously contributed their outstanding
expertise, time and energy to making it happen. For patches, bug fixes, troubleshooting,
expert advice, and prompt responses to the release manager's requests we thank:
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
David Abrahams, Misha Bergal, Jonathan Brandmeyer, Fernando Cacciola, Marshall
Clow, Christopher Currie, Pavol Droba, Caleb Epstein, Eric Friedman, Jeff Garland,
Michael Glassford, Doug Gregor, Joel de Guzman, Hubert Holin, Jaakko Jarvi,
@@ -1571,1487 +1571,1487 @@
Melquiond, Thorsten Ottosen, Vladimir Prus, Robert Ramey, Rene Rivera, Gennadiy
Rozental, Stefan Slapeta, Jonathan Turkanis, Pavel Vozenilek, Jonathan Wakely,
Daryle Walker, Victor A. Wagner Jr. and Martin Wille.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Also, our special thanks go to: John Maddock for the managing the effort of
- converting the majority of the Boost libraries to the &lt;a href="/doc/libs/1_32_0/more/license_info.html"&gt;Boost
- Software License&lt;/a&gt;, Eric Niebler and Joel de Guzman for taking on the
+ converting the majority of the Boost libraries to the <a href="/doc/libs/1_32_0/more/license_info.html">Boost
+ Software License</a>, Eric Niebler and Joel de Guzman for taking on the
important job of improving the Boost documentation's look and feel, and last,
but not least, to our regression test runners, without whom we simply would
never have released: Toon Knapen, Bronek Kozicki, Rene Rivera, Markus Schopflin,
Stefan Slapeta, Victor A. Wagner Jr. and Martin Wille.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Thank you everybody!
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.31.0</title><pubDate>Mon, 26 Jan 2004 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.31.0</title><pubDate>Mon, 26 Jan 2004 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: enable_if, Variant. Updated Libraries: Date Time, Filesystem,
Iterator, MultiArray, Python, Random Number, Regex, Spirit, Test. Deprecated
Libraries: Compose.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915><description><div class="description">
- &lt;div id="version_1_31_0.new_license"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New License&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- A unified &lt;a href="/doc/libs/1_31_0/more/license_info.html"&gt;Boost Software
- License&lt;/a&gt; has been developed and will gradually replace the individual
+ <div id="version_1_31_0.new_license">
+ <h3><span class="link">New License</span></h3>
+ <p>
+ A unified <a href="/doc/libs/1_31_0/more/license_info.html">Boost Software
+ License</a> has been developed and will gradually replace the individual
licenses for most Boost libraries. The new license offers better legal protection
for both users and developers, and should speed user's legal reviews of Boost
libraries. Dave Abrahams led the Boost effort to develop better licensing.
- The legal team was led by &lt;a href="http://cyber.law.harvard.edu/people/cabell/index.html"&gt;Diane
- Cabell&lt;/a&gt;, Director, Clinical Programs, &lt;a href="http://cyber.law.harvard.edu"&gt;Berkman
- Center for Internet &amp;amp; Society&lt;/a&gt;, Harvard Law School. &lt;a href="http://www.nixonpeabody.com/attorneys_detail1.asp?ID=121"&gt;Devin
- Smith&lt;/a&gt;, attorney, &lt;a href="http://www.nixonpeabody.com/default.asp"&gt;Nixon
- Peabody LLP&lt;/a&gt;, wrote the Boost License. Eva Chan, Harvard Law School,
+ The legal team was led by <a href="http://cyber.law.harvard.edu/people/cabell/index.html">Diane
+ Cabell</a>, Director, Clinical Programs, <a href="http://cyber.law.harvard.edu">Berkman
+ Center for Internet &amp; Society</a>, Harvard Law School. <a href="http://www.nixonpeabody.com/attorneys_detail1.asp?ID=121">Devin
+ Smith</a>, attorney, <a href="http://www.nixonpeabody.com/default.asp">Nixon
+ Peabody LLP</a>, wrote the Boost License. Eva Chan, Harvard Law School,
contributed analysis of issues and drafts of various legal documents.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Note: Many of the Boost libraries are still using earlier licenses, though
- all conform to the &lt;a href="/doc/libs/1_31_0/more/lib_guide.htm#license"&gt;Boost
- License Requirements&lt;/a&gt;. After this release we will begin an effort to
+ all conform to the <a href="/doc/libs/1_31_0/more/lib_guide.htm#license">Boost
+ License Requirements</a>. After this release we will begin an effort to
move toward uniform use of the new license.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="version_1_31_0.build_and_installation"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Build and Installation&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- New &lt;a href="/doc/libs/1_31_0/more/getting_started.html"&gt;Getting Started&lt;/a&gt;
+ </p>
+ </div>
+ <div id="version_1_31_0.build_and_installation">
+ <h3><span class="link">Build and Installation</span></h3>
+ <ul>
+ <li>
+ New <a href="/doc/libs/1_31_0/more/getting_started.html">Getting Started</a>
procedures ease download and installation, from Rene Rivera and others.
- &lt;/li&gt;
- &lt;li&gt;
- Improved support for libraries requiring &lt;a href="/doc/libs/1_31_0/more/separate_compilation.html"&gt;separate
- compilation&lt;/a&gt;, from John Maddock and others.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_31_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/utility/enable_if.html"&gt;enable_if&lt;/a&gt;:&lt;/span&gt; Selective
+ </li>
+ <li>
+ Improved support for libraries requiring <a href="/doc/libs/1_31_0/more/separate_compilation.html">separate
+ compilation</a>, from John Maddock and others.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_31_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/utility/enable_if.html">enable_if</a>:</span> Selective
inclusion of function template overloads, from Jaakko Jarvi, Jeremiah Willcock,
and Andrew Lumsdaine. This is an important new technique which exploits the
SFINAE (substitution-failure-is-not-an-error) principle.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/variant/index.html"&gt;Variant Library&lt;/a&gt;:&lt;/span&gt; Safe,
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/variant/index.html">Variant Library</a>:</span> Safe,
generic, stack-based discriminated union container, from Eric Friedman and
Itay Maman.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_31_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/compose/index.htm"&gt;Compose&lt;/a&gt;:&lt;/span&gt; This
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_31_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/compose/index.htm">Compose</a>:</span> This
library has been deprecated and will be removed in a future release. Use
- &lt;a href="/doc/libs/1_31_0/libs/bind/bind.html"&gt;Bind&lt;/a&gt; or &lt;a href="/doc/libs/1_31_0/libs/lambda/doc/index.html"&gt;Lambda&lt;/a&gt; instead.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/date_time/doc/index.html"&gt;Date Time
- Library&lt;/a&gt;:&lt;/span&gt; A whole host of bug fixes, new features, and documentation
+ <a href="/doc/libs/1_31_0/libs/bind/bind.html">Bind</a> or <a href="/doc/libs/1_31_0/libs/lambda/doc/index.html">Lambda</a> instead.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/date_time/doc/index.html">Date Time
+ Library</a>:</span> A whole host of bug fixes, new features, and documentation
improvements. See the Date Time Change History for details.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/filesystem/doc/index.htm"&gt;Filesystem
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/filesystem/doc/index.htm">Filesystem
+ Library</a>:</span>
Several added functions, including improved checking for
directory and file name portability.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/iterator/doc/index.html"&gt;Iterator
- Library&lt;/a&gt;:&lt;/span&gt; Major version upgrade, with interface as proposed for the
- C++ library TR, including an improved &lt;tt&gt;iterator_adaptor&lt;/tt&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/iterator/doc/index.html">Iterator
+ Library</a>:</span> Major version upgrade, with interface as proposed for the
+ C++ library TR, including an improved <tt>iterator_adaptor</tt>
design plus several new components, from David Abrahams, Jeremy Siek, and
Thomas Witt.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/multi_array/index.html"&gt;MultiArray&lt;/a&gt;:&lt;/span&gt; The
- &lt;tt&gt;multi_array&lt;/tt&gt; class template now provides an element-preserving
- resize operation as well as default construction (see the &lt;a href="/doc/libs/1_31_0/libs/multi_array/doc/reference.html"&gt;reference
- manual&lt;/a&gt; for more information).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/python/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/multi_array/index.html">MultiArray</a>:</span> The
+ <tt>multi_array</tt> class template now provides an element-preserving
+ resize operation as well as default construction (see the <a href="/doc/libs/1_31_0/libs/multi_array/doc/reference.html">reference
+ manual</a> for more information).
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/python/index.html">Python Library</a>:</span>
+ <ul>
+ <li>
Support for Python 2.3 and Intel C++ on Linux
- &lt;/li&gt;
- &lt;li&gt;
- Container &lt;a href="/doc/libs/1_31_0/libs/python/doc/v2/indexing.html"&gt;Indexing
- Suite&lt;/a&gt; added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Container <a href="/doc/libs/1_31_0/libs/python/doc/v2/indexing.html">Indexing
+ Suite</a> added.
+ </li>
+ <li>
injected constructors and wrapped function objects.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
wrapping static data members.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;wstring&lt;/span&gt;&lt;/code&gt; conversions.
- &lt;/li&gt;
- &lt;li&gt;
- Improved &lt;a href="/doc/libs/1_31_0/libs/python/doc/v2/args.html"&gt;keyword
- arguments&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span></code> conversions.
+ </li>
+ <li>
+ Improved <a href="/doc/libs/1_31_0/libs/python/doc/v2/args.html">keyword
+ arguments</a>.
+ </li>
+ <li>
Better error messages, including name demangling for GCC.
- &lt;/li&gt;
- &lt;li&gt;
- Simpler &lt;a href="/doc/libs/1_31_0/libs/python/doc/building.html"&gt;build
- procedure&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;em&gt;...and more....&lt;/em&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/random/index.html"&gt;Random Number
- Library&lt;/a&gt;:&lt;/span&gt; Interface changed to match the C++ &lt;a href="/doc/libs/1_31_0/libs/random/wg21-proposal.html"&gt;TR
- proposal&lt;/a&gt;, from Jens Maurer.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/regex/doc/index.html"&gt;Regex&lt;/a&gt;:&lt;/span&gt; Completely
+ </li>
+ <li>
+ Simpler <a href="/doc/libs/1_31_0/libs/python/doc/building.html">build
+ procedure</a>.
+ </li>
+ <li>
+ <em>...and more....</em>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/random/index.html">Random Number
+ Library</a>:</span> Interface changed to match the C++ <a href="/doc/libs/1_31_0/libs/random/wg21-proposal.html">TR
+ proposal</a>, from Jens Maurer.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/regex/doc/index.html">Regex</a>:</span> Completely
new matching algorithm is now much faster than before, plus a selection of
- &lt;a href="/doc/libs/1_31_0/libs/regex/doc/history.html"&gt;new features and
- enhancements&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/spirit/index.html"&gt;Boost.Spirit
- 1.8.0&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;Multiple grammar start rules&lt;/li&gt;
- &lt;li&gt;Multiple Scanner rules (no more scanner business woes)&lt;/li&gt;
- &lt;li&gt;More dynamic parsers&lt;/li&gt;
- &lt;li&gt;Predefined actors&lt;/li&gt;
- &lt;li&gt;Numerous bug fixes and QOI stuff&lt;/li&gt;
- &lt;li&gt;&lt;em&gt;and more...&lt;/em&gt;&lt;/li&gt;
- &lt;/ul&gt;
- &lt;p&gt;
+ <a href="/doc/libs/1_31_0/libs/regex/doc/history.html">new features and
+ enhancements</a>.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/spirit/index.html">Boost.Spirit
+ 1.8.0</a>:</span>
+ <ul>
+ <li>Multiple grammar start rules</li>
+ <li>Multiple Scanner rules (no more scanner business woes)</li>
+ <li>More dynamic parsers</li>
+ <li>Predefined actors</li>
+ <li>Numerous bug fixes and QOI stuff</li>
+ <li><em>and more...</em></li>
+ </ul>
+ <p>
Starting from Spirit v1.8.0, ill conforming compilers will no longer be
supported. If you are still using one of these older compilers, please use
Spirit v1.6.x. See [@http://spirit.sf.net Spirit's Site] for more details.
- &lt;/p&gt;
+ </p>
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_31_0/libs/test/index.html"&gt;Test Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;Free function template based test case&lt;/li&gt;
- &lt;li&gt;Custom exception translators support in execution monitor and
- register_exception_translator added for unit test framework&lt;/li&gt;
- &lt;li&gt;Added support for multi-module unit tests in automatic
- registration facility&lt;/li&gt;
- &lt;li&gt;Floating point comparison algorithm reworked (Is not backward
- compatible!!!)&lt;/li&gt;
- &lt;li&gt;Added support for custom users predicate returning both boolean
- result code and possibly error message&lt;/li&gt;
- &lt;li&gt;Documentation structure rework and update&lt;/li&gt;
- &lt;/ul&gt;
- &lt;p&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_31_0/libs/test/index.html">Test Library</a>:</span>
+ <ul>
+ <li>Free function template based test case</li>
+ <li>Custom exception translators support in execution monitor and
+ register_exception_translator added for unit test framework</li>
+ <li>Added support for multi-module unit tests in automatic
+ registration facility</li>
+ <li>Floating point comparison algorithm reworked (Is not backward
+ compatible!!!)</li>
+ <li>Added support for custom users predicate returning both boolean
+ result code and possibly error message</li>
+ <li>Documentation structure rework and update</li>
+ </ul>
+ <p>
For a complete list of changes see the Test Library
- &lt;a href="/doc/libs/1_31_0/libs/test/doc/release_notes.html#v1_31_0"&gt;release notes&lt;/a&gt;.
- &lt;/p&gt;
+ <a href="/doc/libs/1_31_0/libs/test/doc/release_notes.html#v1_31_0">release notes</a>.
+ </p>
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_31_0.miscellaneous"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Miscellaneous&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_31_0.miscellaneous">
+ <h3><span class="link">Miscellaneous</span></h3>
+ <ul>
+ <li>
Expanded testing and fixes for non-conforming compilers.
- &lt;/li&gt;
- &lt;li&gt;
- Web site hosting now provided by &lt;a href="http://www.sourceforge.net/"&gt;SourceForge&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.30.2</title><pubDate>Tue, 19 Aug 2003 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ <li>
+ Web site hosting now provided by <a href="http://www.sourceforge.net/">SourceForge</a>.
+ </li>
+ </ul>
+ </div>
+</div></description></item><item><title>Version 1.30.2</title><pubDate>Tue, 19 Aug 2003 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix release
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=178835><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=178835><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://www.boost-consulting.com"&gt;Boost Consulting&lt;/a&gt; is now
- hosting Boost CVS mirrors - see our &lt;a href="/more/getting_started.html#CVS"&gt;download
- page&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Backported changes to the &lt;a href="/libs/config/config.htm"&gt;config system&lt;/a&gt;,
+ <ul>
+ <li>
+ <a href="http://www.boost-consulting.com">Boost Consulting</a> is now
+ hosting Boost CVS mirrors - see our <a href="/more/getting_started.html#CVS">download
+ page</a>.
+ </li>
+ <li>
+ Backported changes to the <a href="/libs/config/config.htm">config system</a>,
to better handle new compiler releases.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Bugs in regression reporting in subproject tests were fixed.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Tests are now run in the context of the user's PATH environment settings
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
msvc-stlport and intel-win32-stlport toolsets now build static libraries with
multithreading enabled, to be compatible with the STLPort builds.
- &lt;/li&gt;
- &lt;li&gt;
- intel-win32 toolset now handles &lt;code&gt;&lt;span class="keyword"&gt;wchar_t&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ intel-win32 toolset now handles <code><span class="keyword">wchar_t</span></code>
correctly when intel is installed over msvc6.
- &lt;/li&gt;
- &lt;li&gt;
- Backported fixes from the main trunk which prevent errors building the &lt;a href="/libs/test/doc/index.html"&gt;Boost.Test&lt;/a&gt; library in its default configuration.
- &lt;/li&gt;
- &lt;li&gt;
- Backported portability improvements for &lt;a href="/libs/utility/checked_delete.html"&gt;checked_delete&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Backported fixes from the main trunk which prevent errors building the <a href="/libs/test/doc/index.html">Boost.Test</a> library in its default configuration.
+ </li>
+ <li>
+ Backported portability improvements for <a href="/libs/utility/checked_delete.html">checked_delete</a>.
+ </li>
+ <li>
Locale support for metrowerks (requiring a statically-linked runtime) is more
uniformly handled.
- &lt;/li&gt;
- &lt;li&gt;
- Backported &lt;a href="/libs/conversion/lexical_cast.htm"&gt;conversion/lexical_cast&lt;/a&gt;'s
- &lt;code&gt;&lt;span class="keyword"&gt;wchar_t&lt;/span&gt;&lt;/code&gt; fixes from the main trunk.
- &lt;/li&gt;
- &lt;li&gt;
- intel-linux-tools: added &lt;tt&gt;rt&lt;/tt&gt; to FINDLIBS in order to make
- the &lt;code&gt;&lt;span class="identifier"&gt;clock_gettime&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ Backported <a href="/libs/conversion/lexical_cast.htm">conversion/lexical_cast</a>'s
+ <code><span class="keyword">wchar_t</span></code> fixes from the main trunk.
+ </li>
+ <li>
+ intel-linux-tools: added <tt>rt</tt> to FINDLIBS in order to make
+ the <code><span class="identifier">clock_gettime</span><span class="special">()</span></code>
function available (backport of a patch in CVS HEAD).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/tools/regression/index.htm"&gt;regression/compiler_status.cpp&lt;/a&gt;:
+ </li>
+ <li>
+ <a href="/tools/regression/index.htm">regression/compiler_status.cpp</a>:
backported fixes in error log links generation.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.30.1</title><pubDate>Mon, 4 Aug 2003 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.30.1</title><pubDate>Mon, 4 Aug 2003 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Withdrawn bug fix release, fixes for Lambda, Spirit, MPL, Function, Config,
Format, Regex, Smart Pointers, Python
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
This release was withdrawn on the 12 Aug 2003.
- &lt;/p&gt;
- &lt;p&gt;
- Fixes were made to the following libraries: * The &lt;a href="/libs/lambda/doc/index.html"&gt;Boost.Lambda&lt;/a&gt;
- ..library is now usable with gcc-2.95.2 * &lt;span class="library"&gt;&lt;a href="/libs/spirit/index.html"&gt;Boost.Spirit&lt;/a&gt;:&lt;/span&gt;
+ </p>
+ <p>
+ Fixes were made to the following libraries: * The <a href="/libs/lambda/doc/index.html">Boost.Lambda</a>
+ ..library is now usable with gcc-2.95.2 * <span class="library"><a href="/libs/spirit/index.html">Boost.Spirit</a>:</span>
*
Fixed. Using MSVC++6 (SP5), calling the assign action with a string value on
parsers using the file_iterator will not work. * Fixed: using assign semantic
action in a grammar with a multi_pass iterator adaptor applied to an std::istream_iterator
resulted in a failure to compile under msvc 7.0. * Fixed: There is a bug in the
- &lt;tt&gt;range_run&amp;lt;CharT&amp;gt;::set(range&amp;lt;CharT&amp;gt; const&amp;amp; r)&lt;/tt&gt;
- function in &amp;quot;../boost/spirit/utility/impl/chset/range_run.ipp&amp;quot;. * Fixed:
+ <tt>range_run&lt;CharT&gt;::set(range&lt;CharT&gt; const&amp; r)</tt>
+ function in &quot;../boost/spirit/utility/impl/chset/range_run.ipp&quot;. * Fixed:
handling of trailing whitespace bug (ast_parse/pt_parse related) * Fixed: comment_p
- and end of data bug * Fixed: Most trailing space bug * Fixed: &lt;code&gt;&lt;span class="identifier"&gt;chset&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;::&lt;/span&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt; &lt;span class="special"&gt;~(&lt;/span&gt;&lt;span class="identifier"&gt;range&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;)&lt;/span&gt;&lt;/code&gt;
- bug, &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt; &lt;span class="special"&gt;&amp;amp;(&lt;/span&gt;&lt;span class="identifier"&gt;chset&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;,&lt;/span&gt; &lt;span class="identifier"&gt;range&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;)&lt;/span&gt;&lt;/code&gt;
- bug, &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt; &lt;span class="special"&gt;&amp;amp;(&lt;/span&gt;&lt;span class="identifier"&gt;range&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;,&lt;/span&gt; &lt;span class="identifier"&gt;chset&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;)&lt;/span&gt;&lt;/code&gt;
- bug * Fixed: &lt;code&gt;&lt;span class="identifier"&gt;impl&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;detach_clear&lt;/span&gt;&lt;/code&gt; bug * Fixed: mismatch closure
- return type bug * Fixed: &lt;code&gt;&lt;span class="identifier"&gt;access_node_d&lt;/span&gt;&lt;span class="special"&gt;[]&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="identifier"&gt;access_match_d&lt;/span&gt;&lt;span class="special"&gt;[]&lt;/span&gt;&lt;/code&gt; iterator bugs * Fixed a bug regarding thread
- safety of Phoenix/Spirit closures. * The Boost Template &lt;a href="/libs/mpl/doc/index.html"&gt;Metaprogramming
- Library (MPL)&lt;/a&gt;'s ..typeof implementation is now compatible with Metrowerks
- CodeWarrior Pro8. * &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Boost.Function&lt;/a&gt;:&lt;/span&gt; workaround
- for the new Borland patch (version 0x564) and MSVC++ .NET 2003. * &lt;span class="library"&gt;&lt;a href="/libs/config/index.html"&gt;Boost.Config&lt;/a&gt;&lt;/span&gt;, &lt;a href="/libs/format/doc/format.html"&gt;Boost.Format&lt;/a&gt;,
- and &lt;a href="/libs/regex/index.html"&gt;Boost.Regex&lt;/a&gt; ..have been adjusted
+ and end of data bug * Fixed: Most trailing space bug * Fixed: <code><span class="identifier">chset</span><span class="special">&lt;&gt;::</span><span class="keyword">operator</span> <span class="special">~(</span><span class="identifier">range</span><span class="special">&lt;&gt;)</span></code>
+ bug, <code><span class="keyword">operator</span> <span class="special">&amp;(</span><span class="identifier">chset</span><span class="special">&lt;&gt;,</span> <span class="identifier">range</span><span class="special">&lt;&gt;)</span></code>
+ bug, <code><span class="keyword">operator</span> <span class="special">&amp;(</span><span class="identifier">range</span><span class="special">&lt;&gt;,</span> <span class="identifier">chset</span><span class="special">&lt;&gt;)</span></code>
+ bug * Fixed: <code><span class="identifier">impl</span><span class="special">::</span><span class="identifier">detach_clear</span></code> bug * Fixed: mismatch closure
+ return type bug * Fixed: <code><span class="identifier">access_node_d</span><span class="special">[]</span></code> and <code><span class="identifier">access_match_d</span><span class="special">[]</span></code> iterator bugs * Fixed a bug regarding thread
+ safety of Phoenix/Spirit closures. * The Boost Template <a href="/libs/mpl/doc/index.html">Metaprogramming
+ Library (MPL)</a>'s ..typeof implementation is now compatible with Metrowerks
+ CodeWarrior Pro8. * <span class="library"><a href="/libs/function/index.html">Boost.Function</a>:</span> workaround
+ for the new Borland patch (version 0x564) and MSVC++ .NET 2003. * <span class="library"><a href="/libs/config/index.html">Boost.Config</a></span>, <a href="/libs/format/doc/format.html">Boost.Format</a>,
+ and <a href="/libs/regex/index.html">Boost.Regex</a> ..have been adjusted
to avoid warnings with GCC-3.3, and Boost.Format also now works with string types
- other than &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;string&lt;/span&gt;&lt;/code&gt;. * &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart
- Pointers&lt;/a&gt;:&lt;/span&gt;
- * &lt;code&gt;&lt;span class="identifier"&gt;checked_delete&lt;/span&gt;&lt;/code&gt;
+ other than <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code>. * <span class="library"><a href="/libs/smart_ptr/index.html">Smart
+ Pointers</a>:</span>
+ * <code><span class="identifier">checked_delete</span></code>
now works on more platforms * Compatibility with the SunPro compiler * Added
- missing &lt;code&gt;&lt;span class="preprocessor"&gt;#include&lt;/span&gt;&lt;/code&gt;s. * &lt;span class="library"&gt;&lt;a href="/libs/python/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
+ missing <code><span class="preprocessor">#include</span></code>s. * <span class="library"><a href="/libs/python/index.html">Boost.Python</a>:</span>
* warning suppression for
- finicky compilers * fixed a crashing bug in the &lt;code&gt;&lt;span class="identifier"&gt;raw_function&lt;/span&gt;&lt;/code&gt;
+ finicky compilers * fixed a crashing bug in the <code><span class="identifier">raw_function</span></code>
facility when no keyword arguments were passed. * Improved conversion of NULL
- &lt;code&gt;&lt;span class="identifier"&gt;shared_ptr&lt;/span&gt;&lt;/code&gt;s to Python.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.30.0</title><pubDate>Wed, 19 Mar 2003 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ <code><span class="identifier">shared_ptr</span></code>s to Python.
+ </p>
+</div></description></item><item><title>Version 1.30.0</title><pubDate>Wed, 19 Mar 2003 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Filesystem, Optional, Interval, MPL, Spirit Updated Libraries:
Smart Pointers, Utility, Date-Time, Function, Operators, Test
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=147682><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=147682><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/filesystem/doc/index.htm"&gt;Filesystem Library&lt;/a&gt;&lt;/span&gt; added
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/filesystem/doc/index.htm">Filesystem Library</a></span> added
- Portable paths, iteration over directories, and other useful filesystem operations,
from Beman Dawes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/optional/doc/optional.html"&gt;Optional Library&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/optional/doc/optional.html">Optional Library</a></span> added
- A discriminated-union wrapper for optional values, from Fernando Cacciola.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/numeric/interval/doc/interval.htm"&gt;Interval Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/numeric/interval/doc/interval.htm">Interval Library</a></span>
added
- Extends the usual arithmetic functions to mathematical intervals, from Guillaume
Melquiond, Herve Bronnimann and Sylvain Pion.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/mpl/doc/index.html"&gt;MPL&lt;/a&gt;&lt;/span&gt; added - Template metaprogramming
+ </li>
+ <li>
+ <span class="library"><a href="/libs/mpl/doc/index.html">MPL</a></span> added - Template metaprogramming
framework of compile-time algorithms, sequences and metafunction classes, from
Aleksey Gurtovoy.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/spirit/index.html"&gt;Spirit Library&lt;/a&gt;&lt;/span&gt; added - An
+ </li>
+ <li>
+ <span class="library"><a href="/libs/spirit/index.html">Spirit Library</a></span> added - An
LL (unlimited lookahead) parser framework that represents parsers directly
as EBNF grammars in inlined C++ source code, complete with semantic actions,
ASTs and much more, from Joel de Guzman and team.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointers Library&lt;/a&gt;&lt;/span&gt; -
- cast functions are now spelled &lt;a href="/libs/smart_ptr/shared_ptr.htm#static_pointer_cast"&gt;static_pointer_cast&lt;/a&gt;
- / &lt;a href="/libs/smart_ptr/shared_ptr.htm#dynamic_pointer_cast"&gt;dynamic_pointer_cast&lt;/a&gt;;
- &lt;a href="/libs/smart_ptr/enable_shared_from_this.html"&gt;enable_shared_from_this&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/index.html">Smart Pointers Library</a></span> -
+ cast functions are now spelled <a href="/libs/smart_ptr/shared_ptr.htm#static_pointer_cast">static_pointer_cast</a>
+ / <a href="/libs/smart_ptr/shared_ptr.htm#dynamic_pointer_cast">dynamic_pointer_cast</a>;
+ <a href="/libs/smart_ptr/enable_shared_from_this.html">enable_shared_from_this</a>
added; shared_ptr::shared_ptr(), shared_ptr::reset(), weak_ptr::weak_ptr(),
- weak_ptr::reset() no longer throw; &lt;a href="/libs/smart_ptr/shared_ptr.htm#get_deleter"&gt;get_deleter&lt;/a&gt;
- added; weak_ptr::get() removed; make_shared is now spelled &lt;a href="/libs/smart_ptr/weak_ptr.htm#lock"&gt;weak_ptr::lock()&lt;/a&gt;
- ; &lt;a href="/libs/smart_ptr/intrusive_ptr.html"&gt;intrusive_ptr documentation&lt;/a&gt;
+ weak_ptr::reset() no longer throw; <a href="/libs/smart_ptr/shared_ptr.htm#get_deleter">get_deleter</a>
+ added; weak_ptr::get() removed; make_shared is now spelled <a href="/libs/smart_ptr/weak_ptr.htm#lock">weak_ptr::lock()</a>
+ ; <a href="/libs/smart_ptr/intrusive_ptr.html">intrusive_ptr documentation</a>
added; some experimental undocumented shared_ptr features have been removed;
- a &lt;a href="/libs/smart_ptr/sp_techniques.html"&gt;page describing some smart
- pointer programming techniques&lt;/a&gt; has been added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/libs/utility/assert.html"&gt;boost/assert.hpp&lt;/a&gt;, &lt;a href="/libs/utility/current_function.html"&gt;boost/current_function.hpp&lt;/a&gt;,
- &lt;a href="/libs/utility/throw_exception.html"&gt;boost/throw_exception.hpp&lt;/a&gt;,
- &lt;a href="/libs/utility/checked_delete.html"&gt;boost/checked_delete.hpp&lt;/a&gt;
+ a <a href="/libs/smart_ptr/sp_techniques.html">page describing some smart
+ pointer programming techniques</a> has been added.
+ </li>
+ <li>
+ <a href="/libs/utility/assert.html">boost/assert.hpp</a>, <a href="/libs/utility/current_function.html">boost/current_function.hpp</a>,
+ <a href="/libs/utility/throw_exception.html">boost/throw_exception.hpp</a>,
+ <a href="/libs/utility/checked_delete.html">boost/checked_delete.hpp</a>
have been documented.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/date_time/doc/index.html"&gt;Date-Time Library&lt;/a&gt;&lt;/span&gt; -
+ </li>
+ <li>
+ <span class="library"><a href="/libs/date_time/doc/index.html">Date-Time Library</a></span> -
several fixes and small additions including an interface change to partial_date.
See the Date-Time Change History for more details.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;&lt;/span&gt; - added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a></span> - added
support for assignment to zero (to clear) and comparison against zero (to check
if empty).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/utility/operators.htm#symmetry"&gt;Operators Library&lt;/a&gt;&lt;/span&gt; -
+ </li>
+ <li>
+ <span class="library"><a href="/libs/utility/operators.htm#symmetry">Operators Library</a></span> -
now takes advantage of named return value optimization (NRVO) when available,
from Daniel Frey.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/status/compiler_status.html"&gt;Regression Tests&lt;/a&gt; - Much expanded,
- plus a very nice &lt;a href="http://boost.sourceforge.net/regression-logs/"&gt;summary
- page&lt;/a&gt; from Rene Rivera.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/test/index.html"&gt;Test Library&lt;/a&gt;&lt;/span&gt; - introduced
- following new facilities: &lt;ul&gt;
- &lt;li&gt;
- Automatic registration of unit tests &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="/status/compiler_status.html">Regression Tests</a> - Much expanded,
+ plus a very nice <a href="http://boost.sourceforge.net/regression-logs/">summary
+ page</a> from Rene Rivera.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/test/index.html">Test Library</a></span> - introduced
+ following new facilities: <ul>
+ <li>
+ Automatic registration of unit tests </li>
+ <li>
XML log format
- &lt;/li&gt;
- &lt;li&gt;
- XML report format &lt;/li&gt;
- &lt;li&gt;
- BOOST_CHECK_NO_THROW test tool &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ XML report format </li>
+ <li>
+ BOOST_CHECK_NO_THROW test tool </li>
+ <li>
BOOST_BITWISE_CHECK test tool
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;p&gt;
- For a complete list of changes see the Test Library &lt;a href="/libs/test/doc/release_notes.html#v1_30_0"&gt;release
- notes&lt;/a&gt;. &lt;/p&gt;
+ </li>
+ </ul>
+ <p>
+ For a complete list of changes see the Test Library <a href="/libs/test/doc/release_notes.html#v1_30_0">release
+ notes</a>. </p>
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Many fixes and enhancements to other libraries.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.29.0</title><pubDate>Thu, 10 Oct 2002 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.29.0</title><pubDate>Thu, 10 Oct 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Date-Time, Dynamic Bitset, Format. Updated Libraries: Function,
Multi-Array, Preprocessor, Python, Signals, uBLASH.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=137397><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=137397><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/date_time/doc/index.html"&gt;Date-Time Library&lt;/a&gt;&lt;/span&gt; added
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/date_time/doc/index.html">Date-Time Library</a></span> added
- Dates, times, leap seconds, infinity, and more, from Jeff Garland.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/dynamic_bitset/dynamic_bitset.html"&gt;Dynamic Bitset&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/dynamic_bitset/dynamic_bitset.html">Dynamic Bitset</a></span>
added
- - A runtime sized version of the &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;bitset&lt;/span&gt;&lt;/code&gt;
+ - A runtime sized version of the <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">bitset</span></code>
class from Jeremy Siek and Chuck Allison.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/format/index.html"&gt;Format Library&lt;/a&gt;&lt;/span&gt; added - Type-safe
+ </li>
+ <li>
+ <span class="library"><a href="/libs/format/index.html">Format Library</a></span> added - Type-safe
'printf-like' format operations, from Samuel Krempp.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt; Major
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a>:</span> Major
syntactic changes have been made. Some old syntax and little-used features
have been deprecated (and will be removed shortly), and the syntax for the
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;function&lt;/span&gt;&lt;/code&gt; class template has been greatly
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">function</span></code> class template has been greatly
improved on conforming compilers. Please see the compatibility note for more
information.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/multi_array/doc/index.html"&gt;Multi-array Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/multi_array/doc/index.html">Multi-array Library</a></span>
added
- Multidimensional containers and adaptors for arrays of contiguous data, from
Ron Garcia.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/preprocessor/index.html"&gt;Preprocessor Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/preprocessor/index.html">Preprocessor Library</a>:</span>
Major
upgrade, from Paul Mensonides.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;&lt;/span&gt; - Version
+ </li>
+ <li>
+ <span class="library"><a href="/libs/python/doc/index.html">Python Library</a></span> - Version
2 is released, from Dave Abrahams and others. This is a major rewrite which
works on many more compilers and platforms, with a completely new interface
and lots of new features. Boost.Python v2 requires Python 2.2 or later.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/signals/doc/index.html"&gt;Signals Library&lt;/a&gt;&lt;/span&gt; added
- - Managed signals &amp;amp; slots callback implementation, from Doug Gregor.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/test/doc/index.html"&gt;Test Library&lt;/a&gt;:&lt;/span&gt; Major new
+ </li>
+ <li>
+ <span class="library"><a href="/libs/signals/doc/index.html">Signals Library</a></span> added
+ - Managed signals &amp; slots callback implementation, from Doug Gregor.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/test/doc/index.html">Test Library</a>:</span> Major new
version, including full unit test capabilities, from Gennadiy Rozental.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/numeric/ublas/doc/index.htm"&gt;uBLAS Library&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/numeric/ublas/doc/index.htm">uBLAS Library</a></span> added
- Basic linear algebra for dense, packed and sparse matrices, from Joerg Walter
and Mathias Koch.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.28.0</title><pubDate>Wed, 15 May 2002 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.28.0</title><pubDate>Wed, 15 May 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Lambda, I/O State Saver. Updated Libraries: Configuration, Random
Number, Smart Pointers, Function Utility.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=123324><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=123324><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- The Boost mailing lists are now also accessible as &lt;a href="/more/mailing_lists.htm#newsgroup"&gt;newsgroups&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- A powerful &lt;a href="http://aspn.activestate.com/ASPN/Mail/Archives/boost/"&gt;mailing
- list archive&lt;/a&gt; has been contributed by the &lt;a href="http://aspn.activestate.com/ASPN"&gt;ActiveState
- Programmer Network&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/lambda/doc/index.html"&gt;Lambda Library&lt;/a&gt;&lt;/span&gt; added,
+ <ul>
+ <li>
+ The Boost mailing lists are now also accessible as <a href="/more/mailing_lists.htm#newsgroup">newsgroups</a>.
+ </li>
+ <li>
+ A powerful <a href="http://aspn.activestate.com/ASPN/Mail/Archives/boost/">mailing
+ list archive</a> has been contributed by the <a href="http://aspn.activestate.com/ASPN">ActiveState
+ Programmer Network</a>.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/lambda/doc/index.html">Lambda Library</a></span> added,
from Jaakko Jarvi and Gary Powell. Define small unnamed function objects at
- the actual call site: for_each( a.begin(), a.end(), std::cout &amp;lt;&amp;lt; _1 &amp;lt;&amp;lt;
+ the actual call site: for_each( a.begin(), a.end(), std::cout &lt;&lt; _1 &lt;&lt;
' ' );
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/io/doc/ios_state.html"&gt;I/O State Saver Library added&lt;/a&gt;&lt;/span&gt; -
+ </li>
+ <li>
+ <span class="library"><a href="/libs/io/doc/ios_state.html">I/O State Saver Library added</a></span> -
Save I/O state to prevent jumbled data, from Daryle Walker.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/config/config.htm"&gt;Configuration Library&lt;/a&gt;:&lt;/span&gt; User
+ </li>
+ <li>
+ <span class="library"><a href="/libs/config/config.htm">Configuration Library</a>:</span> User
code should not use BOOST_NO_LIMITS.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; Avoid
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> Avoid
compiler warnings.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointers Library&lt;/a&gt;:&lt;/span&gt; Added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/index.html">Smart Pointers Library</a>:</span> Added
shared_polymorphic_cast and shared_polymorphic_downcast.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt; Now
- supports function objects with the unary &lt;code&gt;&lt;span class="special"&gt;&amp;amp;&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a>:</span> Now
+ supports function objects with the unary <code><span class="special">&amp;</span></code>
operator overloaded.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/utility/utility.htm"&gt;Utility Library&lt;/a&gt;:&lt;/span&gt; Added
- &lt;code&gt;&lt;span class="identifier"&gt;addressof&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/utility/utility.htm">Utility Library</a>:</span> Added
+ <code><span class="identifier">addressof</span><span class="special">()</span></code>
function.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The usual small fixes and tweaks.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.27.0</title><pubDate>Tue, 5 Feb 2002 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.27.0</title><pubDate>Tue, 5 Feb 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Python, Integer, Function, Quaternions, Octonions, Smart
Pointers, Preprocessor, Threads.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=77358><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=77358><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt; Scott
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/python/doc/index.html">Python Library</a>:</span> Scott
Snyder contributed inplace operator support.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;Integer Library&lt;/a&gt;:&lt;/span&gt; Daryle
- Walker contributed enhancements to the &lt;a href="/libs/integer/integer.htm"&gt;type
- selection templates&lt;/a&gt;, and added new compile-time &lt;a href="/libs/integer/doc/integer_mask.html"&gt;bit
- mask&lt;/a&gt;, &lt;a href="/libs/integer/doc/static_log2.html"&gt;binary logarithm&lt;/a&gt;,
- and &lt;a href="/libs/integer/doc/static_min_max.html"&gt;extrema&lt;/a&gt; templates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt; user
- may request that &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;function&lt;/span&gt;&lt;/code&gt; objects store a reference to a function
- object target instead of a copy, using &lt;a href="/libs/bind/ref.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;ref&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;. Stateless objects are optimized
+ </li>
+ <li>
+ <span class="library"><a href="/libs/integer/index.html">Integer Library</a>:</span> Daryle
+ Walker contributed enhancements to the <a href="/libs/integer/integer.htm">type
+ selection templates</a>, and added new compile-time <a href="/libs/integer/doc/integer_mask.html">bit
+ mask</a>, <a href="/libs/integer/doc/static_log2.html">binary logarithm</a>,
+ and <a href="/libs/integer/doc/static_min_max.html">extrema</a> templates.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a>:</span> user
+ may request that <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">function</span></code> objects store a reference to a function
+ object target instead of a copy, using <a href="/libs/bind/ref.html"><code><span class="identifier">ref</span></code></a>. Stateless objects are optimized
so that they require no dynamic storage.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/html/boost_math/quaternions.html"&gt;Quaternions&lt;/a&gt;:&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/doc/html/boost_math/quaternions.html">Quaternions</a>:</span> added
support for GCC 2.95.x.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/html/boost_math/octonions.html"&gt;Octonions&lt;/a&gt;:&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/doc/html/boost_math/octonions.html">Octonions</a>:</span> added
support for GCC 2.95.x.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointers Library&lt;/a&gt;:&lt;/span&gt; Peter
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/index.html">Smart Pointers Library</a>:</span> Peter
Dimov contributed a new implementation that fixes some bugs and adds some features
- including &lt;a href="/libs/smart_ptr/compatibility.htm#threadsafe"&gt;thread
- safety&lt;/a&gt; when manipulating the use count, &lt;a href="/libs/smart_ptr/shared_ptr.htm#constructors"&gt;custom
- delete functions&lt;/a&gt;, a new &lt;a href="/libs/smart_ptr/weak_ptr.htm"&gt;weak_ptr&lt;/a&gt;,
+ including <a href="/libs/smart_ptr/compatibility.htm#threadsafe">thread
+ safety</a> when manipulating the use count, <a href="/libs/smart_ptr/shared_ptr.htm#constructors">custom
+ delete functions</a>, a new <a href="/libs/smart_ptr/weak_ptr.htm">weak_ptr</a>,
and shared_static_cast and shared_dynamic_cast.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/preprocessor/doc/index.html"&gt;Preprocessor Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/preprocessor/doc/index.html">Preprocessor Library</a>:</span>
changed
macro prefix from BOOST_PREPROCESSOR to BOOST_PP, added support for list data
structure manipulation, added examples, made library ANSI C friendly, added
- generalized &lt;a href="/libs/preprocessor/doc/ref/for.html"&gt;repetition&lt;/a&gt;
- and &lt;a href="/libs/preprocessor/doc/ref/while.html"&gt;iteration&lt;/a&gt; primitives,
+ generalized <a href="/libs/preprocessor/doc/ref/for.html">repetition</a>
+ and <a href="/libs/preprocessor/doc/ref/while.html">iteration</a> primitives,
improved reference manual.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/thread/doc/index.html"&gt;Threads Library&lt;/a&gt;:&lt;/span&gt; Mac
+ </li>
+ <li>
+ <span class="library"><a href="/libs/thread/doc/index.html">Threads Library</a>:</span> Mac
Carbon implementation contributed by Mac Murrett.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor fixes to many libraries.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.26.0</title><pubDate>Fri, 30 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.26.0</title><pubDate>Fri, 30 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Common Factor, Preprocessor. Updated Libraries: Iterator Adaptor,
Random Number, Operators.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138095><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138095><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/math/doc/common_factor.html"&gt;Common Factor Library&lt;/a&gt;&lt;/span&gt;
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/math/doc/common_factor.html">Common Factor Library</a></span>
added.
Greatest common divisor and least common multiple, from Daryle Walker.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/preprocessor/doc/index.html"&gt;Preprocessor Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/preprocessor/doc/index.html">Preprocessor Library</a></span>
added.
Preprocessor metaprogramming tools including repetition and recursion, from
Vesa Karvonen.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/utility/iterator_adaptors.htm"&gt;Iterator Adaptor Library&lt;/a&gt;:&lt;/span&gt; Added
- &lt;a href="/libs/utility/generator_iterator.htm"&gt;generator iterator&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/utility/iterator_adaptors.htm">Iterator Adaptor Library</a>:</span> Added
+ <a href="/libs/utility/generator_iterator.htm">generator iterator</a>
adaptor, from Jens Maurer.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; Removed
- iterator interface. Fixed overflows in uniform_int&amp;lt;&amp;gt;. Both changes cause
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> Removed
+ iterator interface. Fixed overflows in uniform_int&lt;&gt;. Both changes cause
random number sequences to differ compared to previous boost releases.
- &lt;/li&gt;
- &lt;li&gt;
- [phase library..&lt;a href="/libs/utility/operators.htm"&gt;operators.hpp&lt;/a&gt;:]
+ </li>
+ <li>
+ [phase library..<a href="/libs/utility/operators.htm">operators.hpp</a>:]
Improvements from Daryle and Helmut Ziesel
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/tools/build/index.html"&gt;Boost.Build&lt;/a&gt;:&lt;/span&gt; Continuing
- improvements, including pre-built &lt;a href="/tools/build/index.html"&gt;Boost.Jam
- executables&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/tools/build/index.html">Boost.Build</a>:</span> Continuing
+ improvements, including pre-built <a href="/tools/build/index.html">Boost.Jam
+ executables</a>.
+ </li>
+ <li>
Minor fixes to a number of other libraries.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.25.1</title><pubDate>Mon, 5 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.25.1</title><pubDate>Mon, 5 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Thread, Function.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138097><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138097><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/tools/build/index.html"&gt;Boost Build System&lt;/a&gt;:&lt;/span&gt; Continued
+ <ul>
+ <li>
+ <span class="library"><a href="/tools/build/index.html">Boost Build System</a>:</span> Continued
improvements.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/config/config.htm"&gt;Config Library&lt;/a&gt;:&lt;/span&gt; Continued
+ </li>
+ <li>
+ <span class="library"><a href="/libs/config/config.htm">Config Library</a>:</span> Continued
refinements.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt; Final
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/index.html">Graph Library</a>:</span> Final
cleanup for upcoming the Boost Graph Library book.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/thread/doc/index.html"&gt;Thread Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/thread/doc/index.html">Thread Library</a>:</span> Minor
fixes - tests now pass on most Win32 and POSIX systems including Linux and
Solaris. Semaphore removed as too error prone.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt; direct
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a>:</span> direct
support for member function pointers and documentation updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://groups.yahoo.com/group/Boost-Users"&gt;Boost-Users&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://groups.yahoo.com/group/Boost-Users">Boost-Users</a>
mailing list has been created to address topics of interest to users of Boost
libraries.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl"&gt;Boost
- Wiki web&lt;/a&gt; added. Provides a place for Boost users to openly discuss
+ </li>
+ <li>
+ <a href="http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl">Boost
+ Wiki web</a> added. Provides a place for Boost users to openly discuss
and document the use of Boost libraries. It is not officially maintained by
Boost developers.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.25.0</title><pubDate>Mon, 1 Oct 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.25.0</title><pubDate>Mon, 1 Oct 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Thread, Bind. Updated Libraries: Utility, Array, Config, Random
Number, Math, Tokenizer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138098><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138098><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/thread/doc/index.html"&gt;Thread Library&lt;/a&gt;&lt;/span&gt; added.
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/thread/doc/index.html">Thread Library</a></span> added.
Portable C++ multi-programming at last, from William Kempf.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/libs/utility/base_from_member.html"&gt;Base From Member&lt;/a&gt; added
- to &lt;a href="/libs/utility/utility.htm"&gt;Utility Library&lt;/a&gt;. Support
+ </li>
+ <li>
+ <a href="/libs/utility/base_from_member.html">Base From Member</a> added
+ to <a href="/libs/utility/utility.htm">Utility Library</a>. Support
for the base from member idiom, from Daryle Walker.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/libs/bind/bind.html"&gt;Bind&lt;/a&gt; and &lt;a href="/libs/bind/mem_fn.html"&gt;mem_fn&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/libs/bind/bind.html">Bind</a> and <a href="/libs/bind/mem_fn.html">mem_fn</a>
added - Generalized binders for function/object/pointers and member functions,
from Peter Dimov.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/array/index.html"&gt;Array Library&lt;/a&gt;:&lt;/span&gt; Minor updates,
+ </li>
+ <li>
+ <span class="library"><a href="/libs/array/index.html">Array Library</a>:</span> Minor updates,
from Nico Josuttis.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/config/config.htm"&gt;Config Library&lt;/a&gt;:&lt;/span&gt; major redesign
+ </li>
+ <li>
+ <span class="library"><a href="/libs/config/config.htm">Config Library</a>:</span> major redesign
with much improved and automated configuration of Boost libraries for specific
compilers, from John Maddock.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> Fixed
bug when copying normal_distribution and improved the documentation, from Michael
Stevens and Jens Maurer.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/html/boost_math/math_special_functions.html"&gt;Special functions&lt;/a&gt;,
- &lt;a href="/doc/html/boost_math/octonions.html"&gt;octonions&lt;/a&gt;, &lt;a href="/doc/html/boost_math/quaternions.html"&gt;quaternions&lt;/a&gt; updated, now
+ </li>
+ <li>
+ <a href="/doc/html/boost_math/math_special_functions.html">Special functions</a>,
+ <a href="/doc/html/boost_math/octonions.html">octonions</a>, <a href="/doc/html/boost_math/quaternions.html">quaternions</a> updated, now
useable with many more compilers, plus three new special functions, from Hubert
Holin, Eric Ford, and others.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/tokenizer/index.html"&gt;Tokenizer Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/tokenizer/index.html">Tokenizer Library</a>:</span>
fixes/enhancements
to escaped_list_separator based on empty fields and tokens comments from Johan
Nillson and Jens Maurer.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Coming Soon - A mailing list for Boost users!
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.24.0</title><pubDate>Sun, 19 Aug 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.24.0</title><pubDate>Sun, 19 Aug 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Tuple.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138099><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138099><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/tuple/doc/tuple_users_guide.html"&gt;Tuple Library&lt;/a&gt;&lt;/span&gt;
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/tuple/doc/tuple_users_guide.html">Tuple Library</a></span>
added.
Tuples ease definition of functions returning multiple values, and more, from
Jaakko Jarvi.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor fixes to some other libraries.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/tools/build/index.html"&gt;Boost Build System&lt;/a&gt;&lt;/span&gt; added.
+ </li>
+ <li>
+ <span class="library"><a href="/tools/build/index.html">Boost Build System</a></span> added.
Preliminary release of an innovative build system for Boost libraries, from
Dave Abrahams and others.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/more/formal_review_schedule.html"&gt;Formal Review Schedule&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/more/formal_review_schedule.html">Formal Review Schedule</a>
added. Shows current, future, and recent past review dates.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.23.0</title><pubDate>Fri, 6 Jul 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.23.0</title><pubDate>Fri, 6 Jul 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Any, Function, Tokenizer, Special functions, Octonions, Quaternions.
Updated Library: Smart Pointer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138102><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138102><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/any/index.html"&gt;Any Library&lt;/a&gt;&lt;/span&gt; added. Safe, generic
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/any/index.html">Any Library</a></span> added. Safe, generic
container for single values of different value types, from Kevlin Henney.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function/index.html"&gt;Function Library&lt;/a&gt;&lt;/span&gt; added.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function Library</a></span> added.
Function object wrappers for deferred calls or callbacks, from Doug Gregor.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/tokenizer/index.html"&gt;Tokenizer Library&lt;/a&gt;&lt;/span&gt; added.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/tokenizer/index.html">Tokenizer Library</a></span> added.
Break a string into a series of tokens, from John Bandela.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/html/boost_math/math_special_functions.html"&gt;Special functions&lt;/a&gt;,
- &lt;a href="/doc/html/boost_math/octonions.html"&gt;octonions&lt;/a&gt;, &lt;a href="/doc/html/boost_math/quaternions.html"&gt;quaternions&lt;/a&gt; added, from
+ </li>
+ <li>
+ <a href="/doc/html/boost_math/math_special_functions.html">Special functions</a>,
+ <a href="/doc/html/boost_math/octonions.html">octonions</a>, <a href="/doc/html/boost_math/quaternions.html">quaternions</a> added, from
Hubert Holin.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/smart_ptr.htm"&gt;Smart Pointer Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/smart_ptr.htm">Smart Pointer Library</a>:</span>
shared_ptr
polymorphic pointers now work on more broken compilers.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
IBM/Aix Compiler status table contributed by Toon Knapen.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor fixes to a number of other libraries.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.22.0</title><pubDate>Fri, 25 May 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.22.0</title><pubDate>Fri, 25 May 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libary: CRC. Updated Libraries: Graph, Integer, Regex, Smart Pointer, Utility.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138104><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138104><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/crc/index.html"&gt;CRC Library&lt;/a&gt;&lt;/span&gt; added. Compute
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/crc/index.html">CRC Library</a></span> added. Compute
cyclic redundancy codes from Daryle Walker.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/index.html">Graph Library</a>:</span> Minor
fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/integer_traits.html"&gt;Integer Traits&lt;/a&gt;:&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/integer/integer_traits.html">Integer Traits</a>:</span> added
wchar_t specialization, minor portability fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regex Library&lt;/a&gt;:&lt;/span&gt; Minor portability
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regex Library</a>:</span> Minor portability
fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/smart_ptr.htm"&gt;Smart Pointer Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/smart_ptr.htm">Smart Pointer Library</a>:</span>
fixed
bugs, tightened requirements, added examples.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/utility/utility.htm"&gt;Utility Library&lt;/a&gt;:&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/utility/utility.htm">Utility Library</a>:</span> added
checked_delete() and checked_array_delete() functions.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.21.2</title><pubDate>Tue, 24 Apr 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.21.2</title><pubDate>Tue, 24 Apr 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Compatibility. Updated Libraries: Random Number, Integer, Graph.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138108><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138108><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/compatibility/index.html"&gt;Compatibility Library&lt;/a&gt;&lt;/span&gt;
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/compatibility/index.html">Compatibility Library</a></span>
added:
Help for non-conforming standard libraries missing CXX headers from Ralf Grosse-Kunstleve,
- and help for missing standard library &amp;lt;limits&amp;gt; header from Jens Maurer.
+ and help for missing standard library &lt;limits&gt; header from Jens Maurer.
(These are unreviewed implementation libraries, treated as maintenance steps
only.)
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; Split
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> Split
into separate headers, updated documentation, added lagged_fibonacci generator.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;Integer Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/integer/index.html">Integer Library</a>:</span> Minor
portability update.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a>:</span>
Changed
algorithm interfaces to use named parameters technique. Added graph isomorphism
algorithm.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Download refinements - files now available from either FTP or web server.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://sourceforge.net/tracker/?group_id=7586"&gt;Tracker&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://sourceforge.net/tracker/?group_id=7586">Tracker</a>
Added: View and submit bug, support, and feature requests.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor portability fixes in several other libraries.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.21.1</title><pubDate>Wed, 14 Mar 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.21.1</title><pubDate>Wed, 14 Mar 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Python, Regex.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138111><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138111><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
New download page. The .zip and .tar.gz files now live on the SourceForge ftp
site.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/index.html">Graph Library</a>:</span> Minor
docs fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/python/doc/index.html">Python Library</a>:</span> Minor
docs fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regex Library&lt;/a&gt;:&lt;/span&gt; Minor portability
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regex Library</a>:</span> Minor portability
fixes.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.21.0</title><pubDate>Fri, 9 Mar 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.21.0</title><pubDate>Fri, 9 Mar 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Iterator Adaptor, Pool, Test. Updated Libraries: Graph, Python,
Regular Expression, Type Traits.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/utility/iterator_adaptors.htm"&gt;Iterator Adaptor Library&lt;/a&gt;&lt;/span&gt; added.
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/utility/iterator_adaptors.htm">Iterator Adaptor Library</a></span> added.
Adapt a base type into a standard conforming iterator, and more, from Dave
Abrahams, Jeremy Siek, and John Potter.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/pool/doc/index.html"&gt;Pool Library&lt;/a&gt;&lt;/span&gt; added. Memory
+ </li>
+ <li>
+ <span class="library"><a href="/libs/pool/doc/index.html">Pool Library</a></span> added. Memory
pool management from Steve Cleary.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/test/doc/index.html"&gt;Test Library&lt;/a&gt;&lt;/span&gt; added. Support
+ </li>
+ <li>
+ <span class="library"><a href="/libs/test/doc/index.html">Test Library</a></span> added. Support
for program testing and execution from Beman Dawes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/more/generic_programming.html"&gt;Generic Programming Techniques&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/more/generic_programming.html">Generic Programming Techniques</a>
page added, contributed by Dave Abrahams.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a>:</span>
Updated
- use of iterator adaptors. Changed &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt;
- &lt;span class="special"&gt;==&lt;/span&gt;&lt;/code&gt; for &lt;code&gt;&lt;span class="identifier"&gt;adjacency_list&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;edge_descriptor&lt;/span&gt;&lt;/code&gt;
- to improve semantics for multigraphs. Moved &lt;code&gt;&lt;span class="identifier"&gt;adjacency_iterator_generator&lt;/span&gt;&lt;/code&gt;
- from namespace &lt;code&gt;&lt;span class="identifier"&gt;detail&lt;/span&gt;&lt;/code&gt; to &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;/code&gt; and added &lt;a href="/libs/graph/doc/adjacency_iterator.html"&gt;documentation&lt;/a&gt;.
- Renamed &lt;code&gt;&lt;span class="identifier"&gt;dynamic_components&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; to &lt;a href="/libs/graph/doc/incremental_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;incremental_components&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
- better matching graph literature terminology. Cleaned up interface of &lt;a href="/libs/graph/doc/connected_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;connected_components&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and created separate &lt;a href="/libs/graph/doc/strong_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;strong_components&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ use of iterator adaptors. Changed <code><span class="keyword">operator</span>
+ <span class="special">==</span></code> for <code><span class="identifier">adjacency_list</span><span class="special">::</span><span class="identifier">edge_descriptor</span></code>
+ to improve semantics for multigraphs. Moved <code><span class="identifier">adjacency_iterator_generator</span></code>
+ from namespace <code><span class="identifier">detail</span></code> to <code><span class="identifier">boost</span></code> and added <a href="/libs/graph/doc/adjacency_iterator.html">documentation</a>.
+ Renamed <code><span class="identifier">dynamic_components</span><span class="special">()</span></code> to <a href="/libs/graph/doc/incremental_components.html"><code><span class="identifier">incremental_components</span><span class="special">()</span></code></a>,
+ better matching graph literature terminology. Cleaned up interface of <a href="/libs/graph/doc/connected_components.html"><code><span class="identifier">connected_components</span><span class="special">()</span></code></a> and created separate <a href="/libs/graph/doc/strong_components.html"><code><span class="identifier">strong_components</span><span class="special">()</span></code></a>
function using Tarjan's more efficient algorithm. Fixed documentation figures
- for &lt;a href="/libs/graph/doc/adjacency_list.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_list&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
- and &lt;a href="/libs/graph/doc/adjacency_matrix.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_matrix&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;.
- Added docs for &lt;a href="/libs/graph/doc/cuthill_mckee_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;cuthill_mckee_ordering&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ for <a href="/libs/graph/doc/adjacency_list.html"><code><span class="identifier">adjacency_list</span></code></a>
+ and <a href="/libs/graph/doc/adjacency_matrix.html"><code><span class="identifier">adjacency_matrix</span></code></a>.
+ Added docs for <a href="/libs/graph/doc/cuthill_mckee_ordering.html"><code><span class="identifier">cuthill_mckee_ordering</span><span class="special">()</span></code></a>
algorithm.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;&lt;/span&gt; upgraded.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/python/doc/index.html">Python Library</a></span> upgraded.
Better compatibility with Python 2.0, NULL pointers and smart-pointers get
converted to/from python None, massive documentation review/revision.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a>:</span> Minor
fixes for Unicode platforms.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/type_traits/index.html"&gt;Type Traits Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/type_traits/index.html">Type Traits Library</a></span>
upgraded:
Major revision.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.20.2</title><pubDate>Sat, 10 Feb 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.20.2</title><pubDate>Sat, 10 Feb 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Array traits, Graph, Integer, Random Number, Rational Number,
Regular Expression, Smart Pointer, Timer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138112><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138112><description><div class="description">
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
Array traits: minor portability fix.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt; -
- Changes to &lt;a href="/libs/graph/doc/breadth_first_search.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;breadth_first_search&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
- re: &lt;a href="/libs/graph/doc/BFSVisitor.html"&gt;BFSVisitor&lt;/a&gt;, added
- max flow algorithms &lt;a href="/libs/graph/doc/edmunds_karp_max_flow.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;edmunds_karp_max_flow&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
- and &lt;a href="/libs/graph/doc/push_relabel_max_flow.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;push_relabel_max_flow&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;, added &lt;a href="/libs/graph/doc/adjacency_matrix.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_matrix&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; graph class, added
- &lt;a href="/libs/graph/doc/filtered_graph.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;filtered_graph&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span> -
+ Changes to <a href="/libs/graph/doc/breadth_first_search.html"><code><span class="identifier">breadth_first_search</span><span class="special">()</span></code></a>
+ re: <a href="/libs/graph/doc/BFSVisitor.html">BFSVisitor</a>, added
+ max flow algorithms <a href="/libs/graph/doc/edmunds_karp_max_flow.html"><code><span class="identifier">edmunds_karp_max_flow</span><span class="special">()</span></code></a>
+ and <a href="/libs/graph/doc/push_relabel_max_flow.html"><code><span class="identifier">push_relabel_max_flow</span><span class="special">()</span></code></a>, added <a href="/libs/graph/doc/adjacency_matrix.html"><code><span class="identifier">adjacency_matrix</span></code></a> graph class, added
+ <a href="/libs/graph/doc/filtered_graph.html"><code><span class="identifier">filtered_graph</span></code></a>
adaptor
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;Integer Library&lt;/a&gt;:&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/integer/index.html">Integer Library</a>:</span> minor
fixes to integer.hpp and integer_test.cpp
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="microsoft_vcpp.html"&gt;Portability Hints: Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="microsoft_vcpp.html">Portability Hints: Microsoft Visual C++</a>
added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; Minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> Minor
portability fixes
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/rational/index.html"&gt;Rational Number Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/rational/index.html">Rational Number Library</a>:</span>
documentation
updates, efficiency improvements, co-operates with user-defined types, regression
tests
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;:&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a>:</span> minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointer Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/index.html">Smart Pointer Library</a>:</span>
shared_ptr
example added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/timer/index.html"&gt;Timer Library&lt;/a&gt;:&lt;/span&gt; changed to
+ </li>
+ <li>
+ <span class="library"><a href="/libs/timer/index.html">Timer Library</a>:</span> changed to
an all inline implementation.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.20.1</title><pubDate>Wed, 10 Jan 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.20.1</title><pubDate>Wed, 10 Jan 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Compressed Pair, Graph Library, Regular Expression.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/boost/compressed_pair.hpp"&gt;compressed_pair.hpp&lt;/a&gt; minor update
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <a href="/boost/compressed_pair.hpp">compressed_pair.hpp</a> minor update
fixes test failures of other libraries under VC++.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>
minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor website fixes including missing files in boost_all.zip.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.20.0</title><pubDate>Sat, 6 Jan 2001 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.20.0</title><pubDate>Sat, 6 Jan 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Conversion. Updated Libraries: Array, Graph, Regular Expression.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/conversion/index.html"&gt;Conversion Library&lt;/a&gt;&lt;/span&gt; added
- - &lt;a href="/libs/conversion/cast.htm"&gt;cast&lt;/a&gt; and &lt;a href="/libs/conversion/lexical_cast.htm"&gt;lexical_cast&lt;/a&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/conversion/index.html">Conversion Library</a></span> added
+ - <a href="/libs/conversion/cast.htm">cast</a> and <a href="/libs/conversion/lexical_cast.htm">lexical_cast</a>
headers from Dave Abrahams and Kevlin Henney.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Web site moved to a larger host after the old ISP collapsed unexpectedly.
- &lt;/li&gt;
- &lt;li&gt;
- Regression tests now include execution testing. See &lt;a href="/status/compiler_status.html"&gt;Compiler
- Status&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/more/discussion_policy.htm"&gt;Discussion Policy&lt;/a&gt; page added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/array/index.html"&gt;Array Library&lt;/a&gt;&lt;/span&gt; minor documentation
+ </li>
+ <li>
+ Regression tests now include execution testing. See <a href="/status/compiler_status.html">Compiler
+ Status</a>.
+ </li>
+ <li>
+ <a href="/more/discussion_policy.htm">Discussion Policy</a> page added.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/array/index.html">Array Library</a></span> minor documentation
improvements.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>
minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> minor
updates.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.19.0</title><pubDate>Sun, 10 Dec 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.19.0</title><pubDate>Sun, 10 Dec 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Concept Check, Python, Static Assert, Property Map Concepts.
Updated Libraries: Graph, Regular Expression.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/concept_check/concept_check.htm"&gt;Concept Check Library&lt;/a&gt;&lt;/span&gt; added
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/concept_check/concept_check.htm">Concept Check Library</a></span> added
- tools for generic programming from Jeremy Siek.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/python/doc/index.html"&gt;Python Library&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/python/doc/index.html">Python Library</a></span> added
- reflects C++ classes and functions into Python, from Dave Abrahams.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/static_assert/static_assert.htm"&gt;Static Assert Library&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/static_assert/static_assert.htm">Static Assert Library</a></span> added
- compile time assertions from John Maddock
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/property_map/property_map.html"&gt;Property Map Concepts&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/libs/property_map/property_map.html">Property Map Concepts</a></span> added
- interfaces which map key objects to value objects from Jeremy Siek.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>
minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> minor
updates.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/more/lib_guide.htm"&gt;Library Requirements and Guidelines&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/more/lib_guide.htm">Library Requirements and Guidelines</a>
- directory name policy added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/more/faq.htm"&gt;FAQ&lt;/a&gt; updated.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.18.3</title><pubDate>Sat, 18 Nov 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ <li>
+ <a href="/more/faq.htm">FAQ</a> updated.
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.18.3</title><pubDate>Sat, 18 Nov 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Regular Expression, Cast.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>
minor
fixes and additions.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> minor
fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; Borland compiler fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/boost/cstdint.hpp"&gt;cstdint.hpp&lt;/a&gt; changed to no longer expose
+ </li>
+ <li>
+ <a href="/boost/cast.hpp">cast.hpp</a> Borland compiler fixes.
+ </li>
+ <li>
+ <a href="/boost/cstdint.hpp">cstdint.hpp</a> changed to no longer expose
names to the global namespace.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
BeOS5/Intel compiler status contributed by John Maddock.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/status/compiler_status.html"&gt;Compiler Status&lt;/a&gt;&lt;/span&gt; added
+ </li>
+ <li>
+ <span class="library"><a href="/status/compiler_status.html">Compiler Status</a></span> added
two additional test programs.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.18.2</title><pubDate>Fri, 3 Nov 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.18.2</title><pubDate>Fri, 3 Nov 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Case, Graph, Regular Expression, Configuration. Utility
library split into separate libraries.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/conversion/cast.htm"&gt;Cast Library&lt;/a&gt;&lt;/span&gt; Fix numeric_cast&amp;lt;&amp;gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/conversion/cast.htm">Cast Library</a></span> Fix numeric_cast&lt;&gt;
bugs with floating types.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>
minor
fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; minor
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> minor
fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/config/index.html"&gt;Configuration Header&lt;/a&gt;&lt;/span&gt; more
+ </li>
+ <li>
+ <span class="library"><a href="/libs/config/index.html">Configuration Header</a></span> more
fixes for broken compilers.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Boost Header Dependencies page added.
- &lt;/li&gt;
- &lt;li&gt;
- Terminology change: Several headers previously lumped together as a &amp;quot;utility&amp;quot;
+ </li>
+ <li>
+ Terminology change: Several headers previously lumped together as a &quot;utility&quot;
library are now considered separate libraries. For historical reasons, their
- non-header files still live in the &amp;quot;utility&amp;quot; sub-directory.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.18.1</title><pubDate>Sun, 15 Oct 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ non-header files still live in the &quot;utility&quot; sub-directory.
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.18.1</title><pubDate>Sun, 15 Oct 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Random, Regular Expression, Configuration.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt;,
- &lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;, and &lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;: Minor fixes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/config/index.html"&gt;Configuration Header&lt;/a&gt;&lt;/span&gt; additions
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span>,
+ <a href="/libs/random/index.html">Random Number Library</a>, and <a href="/libs/regex/index.html">Regular Expression Library</a>: Minor fixes.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/config/index.html">Configuration Header</a></span> additions
for various compiler foibles.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Portability Hints: Borland C++ 5.5.1 from Jens Maurer added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/status/compiler_status.html"&gt;Compiler Status&lt;/a&gt;&lt;/span&gt; updated
+ </li>
+ <li>
+ <span class="library"><a href="/status/compiler_status.html">Compiler Status</a></span> updated
for latest versions of several compilers.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.18.0</title><pubDate>Thu, 28 Sep 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.18.0</title><pubDate>Thu, 28 Sep 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Graph, Regular Expression. Updated Libraries: Array, Functional,
Utility, Integer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
Preliminary release of two important new libraries:
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/graph/doc/table_of_contents.html"&gt;Graph Library&lt;/a&gt;&lt;/span&gt; -
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/graph/doc/table_of_contents.html">Graph Library</a></span> -
Generic graph components and algorithms from Jeremy Siek and a University
of Notre Dame team.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/regex/index.html"&gt;Regular Expression Library&lt;/a&gt;&lt;/span&gt; -
+ </li>
+ <li>
+ <span class="library"><a href="/libs/regex/index.html">Regular Expression Library</a></span> -
Text pattern matching in all its glory from John Maddock.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
Other changes:
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/array/index.html"&gt;Array Library&lt;/a&gt;&lt;/span&gt; improvements
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/array/index.html">Array Library</a></span> improvements
reflecting formal review comments.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/boost/functional.hpp"&gt;functional.hpp&lt;/a&gt; compiler workarounds
+ </li>
+ <li>
+ <a href="/boost/functional.hpp">functional.hpp</a> compiler workarounds
added.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;tie&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;
- &lt;span class="identifier"&gt;function&lt;/span&gt; &lt;span class="keyword"&gt;template&lt;/span&gt;&lt;/code&gt;
- added to utility.hpp for easier handling of std::pair&amp;lt;&amp;gt; return values.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;Integer Library&lt;/a&gt;&lt;/span&gt; improved
+ </li>
+ <li>
+ <code><span class="identifier">tie</span><span class="special">()</span>
+ <span class="identifier">function</span> <span class="keyword">template</span></code>
+ added to utility.hpp for easier handling of std::pair&lt;&gt; return values.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/integer/index.html">Integer Library</a></span> improved
handling of 64-bit integers.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor web site page updates.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.17.0</title><pubDate>Thu, 3 Aug 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.17.0</title><pubDate>Thu, 3 Aug 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Added Library: Array. Updated Libraries: Array Traits, Random Number, Smart
Pointer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/array/index.html"&gt;Array Library&lt;/a&gt;&lt;/span&gt; added - An
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/array/index.html">Array Library</a></span> added - An
STL compliant container wrapper for arrays of constant size from Nicolai Josuttis.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
array traits header renamed array_traits.hpp (was array.hpp).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; more
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> more
minor changes to support more compilers.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointer Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/smart_ptr/index.html">Smart Pointer Library</a>:</span>
performance
reducing exception-specifications removed.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Compiler and test program fixes for call_traits, compressed_pair, and type_traits.
- &lt;/li&gt;
- &lt;li&gt;
- Updated &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; to clear compiler warning
+ </li>
+ <li>
+ Updated <a href="/boost/cast.hpp">cast.hpp</a> to clear compiler warning
messages.
- &lt;/li&gt;
- &lt;li&gt;
- Linux &lt;a href="/status/compiler_status.html"&gt;Compiler Status&lt;/a&gt; added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Linux <a href="/status/compiler_status.html">Compiler Status</a> added.
+ </li>
+ <li>
Boost source code now lives in a publicly accessible Concurrent Versions System
(CVS) repository.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.16.1</title><pubDate>Wed, 5 Jul 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.16.1</title><pubDate>Wed, 5 Jul 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Integer, Random Number, Cast, Call Traits, Operators.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;Integer&lt;/a&gt;&lt;/span&gt; library: fixed
- &lt;a href="/boost/cstdint.hpp"&gt;cstdint.hpp&lt;/a&gt; bug, added &lt;a href="/libs/integer/cstdint_test.cpp"&gt;cstdint_test.cpp&lt;/a&gt;,
- updated &lt;a href="/libs/integer/cstdint.htm"&gt;docs&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;:&lt;/span&gt; minor
- fixes to &lt;a href="/boost/random.hpp"&gt;random.hpp&lt;/a&gt; and &lt;a href="/libs/random/random_test.cpp"&gt;random_test.cpp&lt;/a&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/integer/index.html">Integer</a></span> library: fixed
+ <a href="/boost/cstdint.hpp">cstdint.hpp</a> bug, added <a href="/libs/integer/cstdint_test.cpp">cstdint_test.cpp</a>,
+ updated <a href="/libs/integer/cstdint.htm">docs</a>.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/random/index.html">Random Number Library</a>:</span> minor
+ fixes to <a href="/boost/random.hpp">random.hpp</a> and <a href="/libs/random/random_test.cpp">random_test.cpp</a>
to support more compilers.
- &lt;/li&gt;
- &lt;li&gt;
- Updated &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; with more Microsoft compiler
+ </li>
+ <li>
+ Updated <a href="/boost/cast.hpp">cast.hpp</a> with more Microsoft compiler
workarounds.
- &lt;/li&gt;
- &lt;li&gt;
- Updated &lt;a href="/libs/utility/call_traits.htm"&gt;call_traits docs&lt;/a&gt;,
- added &lt;a href="/libs/utility/call_traits_test.cpp"&gt;call_traits_test.cpp&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Cleanup and bug fixes for &lt;a href="/boost/operators.hpp"&gt;operators.hpp&lt;/a&gt;
- and &lt;a href="/libs/utility/operators_test.cpp"&gt;operators_test.cpp&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.16.0</title><pubDate>Wed, 28 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ <li>
+ Updated <a href="/libs/utility/call_traits.htm">call_traits docs</a>,
+ added <a href="/libs/utility/call_traits_test.cpp">call_traits_test.cpp</a>.
+ </li>
+ <li>
+ Cleanup and bug fixes for <a href="/boost/operators.hpp">operators.hpp</a>
+ and <a href="/libs/utility/operators_test.cpp">operators_test.cpp</a>.
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.16.0</title><pubDate>Wed, 28 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Functional, iterator header, Updated Libraries: Random Number,
Rational, Cast, Smart Pointer, Config.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Added &lt;a href="/libs/functional/index.html"&gt;Functional Library&lt;/a&gt; -
+ </span></span></boostbook:purpose><description><div class="description">
+ <ul>
+ <li>
+ Added <a href="/libs/functional/index.html">Functional Library</a> -
Enhanced function object adaptors from Mark Rodgers.
- &lt;/li&gt;
- &lt;li&gt;
- Added missing &lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt;
+ </li>
+ <li>
+ Added missing <a href="/libs/random/index.html">Random Number Library</a>
files.
- &lt;/li&gt;
- &lt;li&gt;
- Updated &lt;a href="/libs/utility/operators.htm"&gt;operators docs&lt;/a&gt; and
- &lt;a href="/boost/operators.hpp"&gt;operators.hpp&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- New &lt;a href="/boost/iterator.hpp"&gt;iterator.hpp&lt;/a&gt; header.
- &lt;/li&gt;
- &lt;li&gt;
- Minor &lt;a href="/boost/rational.hpp"&gt;rational.hpp&lt;/a&gt;, &lt;a href="/libs/rational/rational_example.cpp"&gt;rational_example.cpp&lt;/a&gt;,
- and &lt;a href="/libs/integer/integer_traits_test.cpp"&gt;integer_traits_test.cpp&lt;/a&gt;
+ </li>
+ <li>
+ Updated <a href="/libs/utility/operators.htm">operators docs</a> and
+ <a href="/boost/operators.hpp">operators.hpp</a>.
+ </li>
+ <li>
+ New <a href="/boost/iterator.hpp">iterator.hpp</a> header.
+ </li>
+ <li>
+ Minor <a href="/boost/rational.hpp">rational.hpp</a>, <a href="/libs/rational/rational_example.cpp">rational_example.cpp</a>,
+ and <a href="/libs/integer/integer_traits_test.cpp">integer_traits_test.cpp</a>
changes to support more compilers.
- &lt;/li&gt;
- &lt;li&gt;
- Revised &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt;: removed implicit_cast,
+ </li>
+ <li>
+ Revised <a href="/boost/cast.hpp">cast.hpp</a>: removed implicit_cast,
plus fixes for broken compilers.
- &lt;/li&gt;
- &lt;li&gt;
- Minor &lt;a href="/boost/smart_ptr.hpp"&gt;smart_ptr.hpp&lt;/a&gt; workaround for
+ </li>
+ <li>
+ Minor <a href="/boost/smart_ptr.hpp">smart_ptr.hpp</a> workaround for
some GCC builds.
- &lt;/li&gt;
- &lt;li&gt;
- Several &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt; changes for Microsoft,
+ </li>
+ <li>
+ Several <a href="/boost/config.hpp">config.hpp</a> changes for Microsoft,
Intel, and other compilers.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;a href="/libs/config/index.html"&gt;Configuration Header&lt;/a&gt; page
+ </li>
+ <li>
+ Added <a href="/libs/config/index.html">Configuration Header</a> page
and test program.
- &lt;/li&gt;
- &lt;li&gt;
- Added Experimental &lt;a href="/status/compiler_status.html"&gt;Compiler Status&lt;/a&gt;
+ </li>
+ <li>
+ Added Experimental <a href="/status/compiler_status.html">Compiler Status</a>
page showing what library works with which compilers.
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.15.1</title><pubDate>Wed, 21 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Version 1.15.1</title><pubDate>Wed, 21 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Cast, Operators, Config.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Fixes to &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; and &lt;a href="/libs/utility/operators.htm"&gt;operators&lt;/a&gt;
- fix. Minor additions to &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt; for
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Fixes to <a href="/boost/cast.hpp">cast.hpp</a> and <a href="/libs/utility/operators.htm">operators</a>
+ fix. Minor additions to <a href="/boost/config.hpp">config.hpp</a> for
Microsoft compilers. The 1.15.0 operators changes seem to have introduced incompatibilities.
We are working on fixing them, and have started to build a regression test to
prevent similar future problems.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.15.0</title><pubDate>Sat, 17 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+</div></description></item><item><title>Version 1.15.0</title><pubDate>Sat, 17 Jun 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Added Library: Random Number. Updated Libraries: Utility, Config, Cast.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- &lt;a href="/libs/random/index.html"&gt;Random Number Library&lt;/a&gt; from Jens
- Maurer added. Updated utility library &lt;a href="/libs/utility/operators.htm"&gt;operators&lt;/a&gt;
- eliminates code bloat. Minor additions to &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt;
- and &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; for Microsoft compilers.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.14.3</title><pubDate>Mon, 29 May 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ <a href="/libs/random/index.html">Random Number Library</a> from Jens
+ Maurer added. Updated utility library <a href="/libs/utility/operators.htm">operators</a>
+ eliminates code bloat. Minor additions to <a href="/boost/config.hpp">config.hpp</a>
+ and <a href="/boost/cast.hpp">cast.hpp</a> for Microsoft compilers.
+ </p>
+</div></description></item><item><title>Version 1.14.3</title><pubDate>Mon, 29 May 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Config, Type Traits.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Minor additions to &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt; for Borland
- compilers. Minor fix to &lt;code&gt;&lt;span class="identifier"&gt;type_traits&lt;/span&gt;&lt;/code&gt;
- example. Minor web site fixes. &lt;a href="/more/formal_review_process.htm"&gt;Library
- Formal Review Process&lt;/a&gt; page added.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.14.2</title><pubDate>Tue, 9 May 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Minor additions to <a href="/boost/config.hpp">config.hpp</a> for Borland
+ compilers. Minor fix to <code><span class="identifier">type_traits</span></code>
+ example. Minor web site fixes. <a href="/more/formal_review_process.htm">Library
+ Formal Review Process</a> page added.
+ </p>
+</div></description></item><item><title>Version 1.14.2</title><pubDate>Tue, 9 May 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Documentation updates.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- No libraries updated. &lt;a href="/more/lib_guide.htm"&gt;Library Requirements and
- Guidelines&lt;/a&gt; expanded, &lt;a href="/more/submission_process.htm"&gt;Library
- Submission Process&lt;/a&gt; added.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.14.1</title><pubDate>Fri, 17 Mar 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ No libraries updated. <a href="/more/lib_guide.htm">Library Requirements and
+ Guidelines</a> expanded, <a href="/more/submission_process.htm">Library
+ Submission Process</a> added.
+ </p>
+</div></description></item><item><title>Version 1.14.1</title><pubDate>Fri, 17 Mar 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Rational, Smart Pointer, Call Traits, Compressed Pair, Type
Traits.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Minor fix to &lt;a href="/boost/rational.hpp"&gt;rational.hpp&lt;/a&gt;. Minor documentation
- changes to the &lt;a href="/libs/smart_ptr/index.html"&gt;Smart Pointer&lt;/a&gt;
- Library and &lt;a href="/libs/utility/call_traits.htm"&gt;call_traits&lt;/a&gt;,
- &lt;a href="/libs/utility/compressed_pair.htm"&gt;compressed_pair&lt;/a&gt;, and type_traits.
- Updated &lt;a href="/more/lib_guide.htm"&gt;Library Guidelines&lt;/a&gt; and &lt;a href="/users/people.html"&gt;People&lt;/a&gt; page.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.14.0</title><pubDate>Sun, 5 Mar 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Minor fix to <a href="/boost/rational.hpp">rational.hpp</a>. Minor documentation
+ changes to the <a href="/libs/smart_ptr/index.html">Smart Pointer</a>
+ Library and <a href="/libs/utility/call_traits.htm">call_traits</a>,
+ <a href="/libs/utility/compressed_pair.htm">compressed_pair</a>, and type_traits.
+ Updated <a href="/more/lib_guide.htm">Library Guidelines</a> and <a href="/users/people.html">People</a> page.
+ </p>
+</div></description></item><item><title>Version 1.14.0</title><pubDate>Sun, 5 Mar 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Integer. Experimental libraries moved to vault.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- &lt;a href="/libs/integer/index.html"&gt;Integer Library&lt;/a&gt; status upgraded
- after removing bin_bun.hpp. The &amp;quot;Experimental&amp;quot; library category has
- been removed; the boost files/vault now serves the purpose. Minor fix to &lt;a href="/boost/smart_ptr.hpp"&gt;smart_ptr.hpp&lt;/a&gt; line endings.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.13.0</title><pubDate>Tue, 29 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ <a href="/libs/integer/index.html">Integer Library</a> status upgraded
+ after removing bin_bun.hpp. The &quot;Experimental&quot; library category has
+ been removed; the boost files/vault now serves the purpose. Minor fix to <a href="/boost/smart_ptr.hpp">smart_ptr.hpp</a> line endings.
+ </p>
+</div></description></item><item><title>Version 1.13.0</title><pubDate>Tue, 29 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Added Libraries: Utility, Type Traits, Call Traits, Compressed Pair.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Adds &lt;a href="/libs/utility/index.html"&gt;Utility Library&lt;/a&gt; &lt;a href="/libs/type_traits/index.html"&gt;type_traits&lt;/a&gt;,
- &lt;a href="/libs/utility/call_traits.htm"&gt;call_traits&lt;/a&gt;, and &lt;a href="/libs/utility/compressed_pair.htm"&gt;compressed_pair&lt;/a&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Adds <a href="/libs/utility/index.html">Utility Library</a> <a href="/libs/type_traits/index.html">type_traits</a>,
+ <a href="/libs/utility/call_traits.htm">call_traits</a>, and <a href="/libs/utility/compressed_pair.htm">compressed_pair</a>
headers from John Maddock, Steve Cleary and Howard Hinnant.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.12.0</title><pubDate>Wed, 23 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+</div></description></item><item><title>Version 1.12.0</title><pubDate>Wed, 23 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Library: Integer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Adds a &lt;a href="/libs/integer/integer_traits.html"&gt;integer_traits&lt;/a&gt;
- header from Jens Maurer to the &lt;a href="/libs/integer/index.html"&gt;Integer
- Library&lt;/a&gt;.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.11.2</title><pubDate>Mon, 21 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Adds a <a href="/libs/integer/integer_traits.html">integer_traits</a>
+ header from Jens Maurer to the <a href="/libs/integer/index.html">Integer
+ Library</a>.
+ </p>
+</div></description></item><item><title>Version 1.11.2</title><pubDate>Mon, 21 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Smart Pointer.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- &lt;a href="/libs/smart_ptr/smarttests.htm"&gt;Smart pointer timings&lt;/a&gt; added
- (thanks to Gavin Collings). Minor fix to the &lt;code&gt;&lt;span class="identifier"&gt;min_rand&lt;/span&gt;&lt;/code&gt;
- sample program. Minor fixes to &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt;.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.11.1</title><pubDate>Wed, 2 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ <a href="/libs/smart_ptr/smarttests.htm">Smart pointer timings</a> added
+ (thanks to Gavin Collings). Minor fix to the <code><span class="identifier">min_rand</span></code>
+ sample program. Minor fixes to <a href="/boost/config.hpp">config.hpp</a>.
+ </p>
+</div></description></item><item><title>Version 1.11.1</title><pubDate>Wed, 2 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Minor fix for cast.hpp.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Minor fix to &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; (thanks to Doncho
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Minor fix to <a href="/boost/cast.hpp">cast.hpp</a> (thanks to Doncho
Angelov).
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.11.0</title><pubDate>Tue, 1 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+</div></description></item><item><title>Version 1.11.0</title><pubDate>Tue, 1 Feb 2000 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Rational Number. Updated Libraries: Case, Config, Smart Pointer,
Utility.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Added &lt;a href="/libs/rational/index.html"&gt;Rational Number Library&lt;/a&gt;.
- Minor fixes to &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt;, &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt;,
- &lt;a href="/boost/smart_ptr.hpp"&gt;smart_ptr.hpp&lt;/a&gt;, &lt;a href="/boost/utility.hpp"&gt;utility.hpp&lt;/a&gt;,
- and to the &lt;code&gt;&lt;span class="identifier"&gt;min_rand&lt;/span&gt;&lt;/code&gt; sample programs.
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Added <a href="/libs/rational/index.html">Rational Number Library</a>.
+ Minor fixes to <a href="/boost/cast.hpp">cast.hpp</a>, <a href="/boost/config.hpp">config.hpp</a>,
+ <a href="/boost/smart_ptr.hpp">smart_ptr.hpp</a>, <a href="/boost/utility.hpp">utility.hpp</a>,
+ and to the <code><span class="identifier">min_rand</span></code> sample programs.
Minor site cleanup (thanks to Paul Baxter).
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.10.4</title><pubDate>Fri, 31 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+</div></description></item><item><title>Version 1.10.4</title><pubDate>Fri, 31 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Smart Pointer, Cast.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Minor fixes to &lt;a href="/boost/smart_ptr.hpp"&gt;smart_ptr.hpp&lt;/a&gt; and &lt;a href="/libs/conversion/cast.htm"&gt;cast documentation&lt;/a&gt;.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.10.3</title><pubDate>Thu, 30 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Minor fixes to <a href="/boost/smart_ptr.hpp">smart_ptr.hpp</a> and <a href="/libs/conversion/cast.htm">cast documentation</a>.
+ </p>
+</div></description></item><item><title>Version 1.10.3</title><pubDate>Thu, 30 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Compse, Operators, Cast, Config, Smart Pointer First release
with a version number.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- Minor fixes to the compose library examples, &lt;a href="/libs/utility/operators.htm"&gt;operators
- documentation&lt;/a&gt;, &lt;a href="/boost/operators.hpp"&gt;operators.hpp&lt;/a&gt;,
- &lt;a href="/libs/conversion/cast.htm"&gt;cast documentation&lt;/a&gt;, &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt;,
- &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt;, and &lt;a href="/boost/smart_ptr.hpp"&gt;smart_ptr.hpp&lt;/a&gt;.
- &lt;/p&gt;
- &lt;p&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ Minor fixes to the compose library examples, <a href="/libs/utility/operators.htm">operators
+ documentation</a>, <a href="/boost/operators.hpp">operators.hpp</a>,
+ <a href="/libs/conversion/cast.htm">cast documentation</a>, <a href="/boost/cast.hpp">cast.hpp</a>,
+ <a href="/boost/config.hpp">config.hpp</a>, and <a href="/boost/smart_ptr.hpp">smart_ptr.hpp</a>.
+ </p>
+ <p>
This is the first release with a version number. The version numbering scheme
is xxx.yyy.zzz.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </p>
+ <ul>
+ <li>
xxx = Major version
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
yyy = New library or feature added
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
zzz = Bug fixes only
- &lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;</description></item><item><title>Old Versions</title><pubDate>Tue, 14 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </li>
+ </ul>
+</div></description></item><item><title>Old Versions</title><pubDate>Tue, 14 Dec 1999 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Early releases of boost without version numbers.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;div id="old_versions.14_dec_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;14 Dec 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/boost/operators.hpp"&gt;Operators.hpp&lt;/a&gt; &lt;a href="/libs/utility/operators.htm"&gt;documentation&lt;/a&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <div id="old_versions.14_dec_1999">
+ <h3><span class="link">14 Dec 1999</span></h3>
+ <p>
+ <a href="/boost/operators.hpp">Operators.hpp</a> <a href="/libs/utility/operators.htm">documentation</a>
improved.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.13_dec_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;13 Dec 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Added iterator operators and helpers to &lt;a href="/libs/utility/operators.htm"&gt;header
- operators.hpp&lt;/a&gt;, together with an iterator test program. This header
+ </p>
+ </div>
+ <div id="old_versions.13_dec_1999">
+ <h3><span class="link">13 Dec 1999</span></h3>
+ <p>
+ Added iterator operators and helpers to <a href="/libs/utility/operators.htm">header
+ operators.hpp</a>, together with an iterator test program. This header
is maturing into something really useful for building arithmetic or iterator
user-defined types, so look it over even if you browsed one of the earlier
versions.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.11_dec_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;11 Dec 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Added next() and prior() to &lt;a href="/libs/utility/utility.htm"&gt;header utility.hpp&lt;/a&gt;.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.8_dec_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;8 Dec 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Minor improvements to the &lt;a href="/libs/smart_ptr/index.html"&gt;smart pointer&lt;/a&gt;
- library: &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt; &lt;span class="special"&gt;==&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt; &lt;span class="special"&gt;!=&lt;/span&gt;&lt;/code&gt;,
- and specializations for &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;swap&lt;/span&gt;&lt;/code&gt; and
- &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;less&lt;/span&gt;&lt;/code&gt; now provided.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.18_nov_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;18 Nov 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Minor improvements made to the &lt;a href="/libs/utility/operators.htm"&gt;Operator
- templates&lt;/a&gt;.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.15_nov_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;15 Nov 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/libs/utility/operators.htm"&gt;Operator templates&lt;/a&gt; have been
- added to the &lt;a href="/libs/utility/index.html"&gt;utility&lt;/a&gt; library.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.11_oct_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;11 Oct 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Minor &lt;a href="/libs/smart_ptr/index.html"&gt;smart pointer&lt;/a&gt; library
- and &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt; changes to improve portability.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.26_sep_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;26 Sep 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- Minor updates to several libraries: * &lt;code&gt;&lt;span class="identifier"&gt;polymorphic_downcast&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt;&lt;/code&gt; in the &lt;a href="/libs/utility/index.html"&gt;utility&lt;/a&gt;
- library &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt; header now works for
- multiple inheritance cases. * &lt;code&gt;&lt;span class="identifier"&gt;shared_ptr&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="identifier"&gt;shared_array&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt;&lt;/code&gt; &lt;code&gt;&lt;span class="identifier"&gt;swap&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; functions added in the &lt;a href="/libs/smart_ptr/index.html"&gt;smart
- pointer&lt;/a&gt; library. * &lt;span class="library"&gt;&lt;a href="/boost/timer.hpp"&gt;timer.hpp&lt;/a&gt;&lt;/span&gt; &lt;code&gt;&lt;span class="identifier"&gt;elapsed_max&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- and &lt;code&gt;&lt;span class="identifier"&gt;elapsed_min&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- functions added to the &lt;a href="/libs/timer/index.html"&gt;timer&lt;/a&gt; library.
- * &lt;span class="library"&gt;&lt;a href="/libs/integer/index.html"&gt;integer&lt;/a&gt;&lt;/span&gt; library bin_ubin.hpp
- changes to eliminate compiler warning messages. * &lt;a href="/boost/config.hpp"&gt;config.hpp&lt;/a&gt;
+ </p>
+ </div>
+ <div id="old_versions.11_dec_1999">
+ <h3><span class="link">11 Dec 1999</span></h3>
+ <p>
+ Added next() and prior() to <a href="/libs/utility/utility.htm">header utility.hpp</a>.
+ </p>
+ </div>
+ <div id="old_versions.8_dec_1999">
+ <h3><span class="link">8 Dec 1999</span></h3>
+ <p>
+ Minor improvements to the <a href="/libs/smart_ptr/index.html">smart pointer</a>
+ library: <code><span class="keyword">operator</span> <span class="special">==</span></code>,
+ <code><span class="keyword">operator</span> <span class="special">!=</span></code>,
+ and specializations for <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">swap</span></code> and
+ <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">less</span></code> now provided.
+ </p>
+ </div>
+ <div id="old_versions.18_nov_1999">
+ <h3><span class="link">18 Nov 1999</span></h3>
+ <p>
+ Minor improvements made to the <a href="/libs/utility/operators.htm">Operator
+ templates</a>.
+ </p>
+ </div>
+ <div id="old_versions.15_nov_1999">
+ <h3><span class="link">15 Nov 1999</span></h3>
+ <p>
+ <a href="/libs/utility/operators.htm">Operator templates</a> have been
+ added to the <a href="/libs/utility/index.html">utility</a> library.
+ </p>
+ </div>
+ <div id="old_versions.11_oct_1999">
+ <h3><span class="link">11 Oct 1999</span></h3>
+ <p>
+ Minor <a href="/libs/smart_ptr/index.html">smart pointer</a> library
+ and <a href="/boost/config.hpp">config.hpp</a> changes to improve portability.
+ </p>
+ </div>
+ <div id="old_versions.26_sep_1999">
+ <h3><span class="link">26 Sep 1999</span></h3>
+ <p>
+ Minor updates to several libraries: * <code><span class="identifier">polymorphic_downcast</span><span class="special">&lt;&gt;</span></code> in the <a href="/libs/utility/index.html">utility</a>
+ library <a href="/boost/cast.hpp">cast.hpp</a> header now works for
+ multiple inheritance cases. * <code><span class="identifier">shared_ptr</span><span class="special">&lt;&gt;</span></code> and <code><span class="identifier">shared_array</span><span class="special">&lt;&gt;</span></code> <code><span class="identifier">swap</span><span class="special">()</span></code> functions added in the <a href="/libs/smart_ptr/index.html">smart
+ pointer</a> library. * <span class="library"><a href="/boost/timer.hpp">timer.hpp</a></span> <code><span class="identifier">elapsed_max</span><span class="special">()</span></code>
+ and <code><span class="identifier">elapsed_min</span><span class="special">()</span></code>
+ functions added to the <a href="/libs/timer/index.html">timer</a> library.
+ * <span class="library"><a href="/libs/integer/index.html">integer</a></span> library bin_ubin.hpp
+ changes to eliminate compiler warning messages. * <a href="/boost/config.hpp">config.hpp</a>
minor changes to aid library developers. No impact on library users.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.3_sep_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;3 Sep 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- The cast functions in the &lt;a href="/libs/utility/index.html"&gt;utility&lt;/a&gt;
+ </p>
+ </div>
+ <div id="old_versions.3_sep_1999">
+ <h3><span class="link">3 Sep 1999</span></h3>
+ <p>
+ The cast functions in the <a href="/libs/utility/index.html">utility</a>
library were considerably simplified.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.1_sep_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;1 Sep 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- The cast functions initially in &lt;a href="/boost/utility.hpp"&gt;utility.hpp&lt;/a&gt;
- have been moved to &lt;a href="/boost/cast.hpp"&gt;cast.hpp&lt;/a&gt;, still in
- the &lt;a href="/libs/utility/index.html"&gt;utility&lt;/a&gt; library.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;div id="old_versions.1_sep_1999"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;1 Sep 1999&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- The category &amp;quot;Experimental&amp;quot; has been added to the &lt;a href="/libs/libraries.htm"&gt;library&lt;/a&gt;
- page. The &lt;a href="/libs/integer/index.html"&gt;integer&lt;/a&gt; library is
+ </p>
+ </div>
+ <div id="old_versions.1_sep_1999">
+ <h3><span class="link">1 Sep 1999</span></h3>
+ <p>
+ The cast functions initially in <a href="/boost/utility.hpp">utility.hpp</a>
+ have been moved to <a href="/boost/cast.hpp">cast.hpp</a>, still in
+ the <a href="/libs/utility/index.html">utility</a> library.
+ </p>
+ </div>
+ <div id="old_versions.1_sep_1999">
+ <h3><span class="link">1 Sep 1999</span></h3>
+ <p>
+ The category &quot;Experimental&quot; has been added to the <a href="/libs/libraries.htm">library</a>
+ page. The <a href="/libs/integer/index.html">integer</a> library is
the first entry.
- &lt;/p&gt;
- &lt;/div&gt;
- &lt;p&gt;
+ </p>
+ </div>
+ <p>
...And the remainder are lost to the mists of time (for now, anyway)....
- &lt;/p&gt;
-&lt;/div&gt;</description></item></channel>
+ </p>
+</div></description></item></channel>
</rss>
\ No newline at end of file
==============================================================================
--- website/public_html/beta/feed/history/boost_1_35_0.qbk (original)
+++ website/public_html/beta/feed/history/boost_1_35_0.qbk 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -32,9 +32,9 @@
Generic Image Library, from Lubomir Bourdev and Hailin Jin.
* [phrase library..[@/libs/interprocess/index.html Interprocess]:]
Shared memory, memory mapped files, process-shared mutexes,
- condition variables, containers and allocators, from Ion Gaztanaga.
+ condition variables, containers and allocators, from Ion Gazta'''ñ'''aga.
* [phrase library..[@/libs/intrusive/index.html Intrusive]:]
- Intrusive containers and algorithms, from Ion Gaztanaga.
+ Intrusive containers and algorithms, from Ion Gazta'''ñ'''aga.
* [phrase library..[@/libs/math/doc/sf_and_dist/html/index.html Math/Special Functions]:]
A wide selection of mathematical special functions from
John Maddock, Paul Bristow, Hubert Holin and Xiaogang Zhang.
==============================================================================
--- website/public_html/beta/feed/news.rss (original)
+++ website/public_html/beta/feed/news.rss 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -6,1035 +6,1035 @@
<description/>
<language>en-us</language>
<copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
- <item><title>Version 1.35.0</title><pubDate>Wed, 23 Jan 2008 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ <item><title>Version 1.35.0</title><pubDate>Wed, 23 Jan 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041><description><div class="description">
- &lt;div id="version_1_35_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/asio/index.html"&gt;Asio&lt;/a&gt;:&lt;/span&gt; Portable networking,
+ <div id="version_1_35_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span> Portable networking,
including sockets, timers, hostname resolution and socket iostreams, from
Chris Kohlhoff.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/bimap/index.html"&gt;Bimap&lt;/a&gt;:&lt;/span&gt; Boost.Bimap is a
+ </li>
+ <li>
+ <span class="library"><a href="/libs/bimap/index.html">Bimap</a>:</span> Boost.Bimap is a
bidirectional maps library for C++. With Boost.Bimap you can create associative
containers in which both types can be used as key, from Matias Capeletto.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/circular_buffer/index.html"&gt;circular_buffer&lt;/a&gt;:&lt;/span&gt; STL
+ </li>
+ <li>
+ <span class="library"><a href="/libs/circular_buffer/index.html">circular_buffer</a>:</span> STL
compliant container also known as ring or cyclic buffer, from Jan Gaspar.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/function_types/index.html"&gt;Function Types&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function_types/index.html">Function Types</a>:</span>
Boost.FunctionTypes
provides functionality to classify, decompose and synthesize function, function
pointer, function reference and pointer to member types. From Tobias Schwinger.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/fusion/index.html"&gt;Fusion&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
Library for working
with tuples, including various containers, algorithms, etc. From Joel de
Guzman, Dan Marsden and Tobias Schwinger.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/gil/doc/index.html"&gt;GIL&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/gil/doc/index.html">GIL</a>:</span>
Generic Image Library,
from Lubomir Bourdev and Hailin Jin.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/interprocess/index.html"&gt;Interprocess&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
Shared
memory, memory mapped files, process-shared mutexes, condition variables,
- containers and allocators, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/intrusive/index.html"&gt;Intrusive&lt;/a&gt;:&lt;/span&gt;
+ containers and allocators, from Ion Gaztañaga.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
Intrusive
- containers and algorithms, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/math/doc/sf_and_dist/html/index.html"&gt;Math/Special
- Functions&lt;/a&gt;:&lt;/span&gt;
+ containers and algorithms, from Ion Gaztañaga.
+ </li>
+ <li>
+ <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Special
+ Functions</a>:</span>
A wide selection of mathematical special functions from
John Maddock, Paul Bristow, Hubert Holin and Xiaogang Zhang.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/math/doc/sf_and_dist/html/index.html"&gt;Math/Statistical
- Distributions&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Statistical
+ Distributions</a>:</span>
A wide selection of univariate statistical distributions
and functions that operate on them from John Maddock and Paul Bristow
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/html/mpi.html"&gt;MPI&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/html/mpi.html">MPI</a>:</span>
Message Passing Interface
library, for use in distributed-memory parallel application programming,
from Douglas Gregor and Matthias Troyer.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/system/index.html"&gt;System&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/libs/system/index.html">System</a>:</span>
Operating system
support, including the diagnostics support that will be part of the C++0x
standard library, from Beman Dawes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/iostreams/index.html"&gt;Iostreams&lt;/a&gt;:&lt;/span&gt; Framework
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_35_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/iostreams/index.html">Iostreams</a>:</span> Framework
for defining streams, stream buffers and i/o filters, from Jonathan Turkanis.
Highlights:
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
Clarified the semantics of close(). This fixes several bugs but will
- break some existing code. See &lt;a href="/libs/iostreams/doc/index.html?path=12"&gt;Release
- Notes&lt;/a&gt; for details.
- &lt;/li&gt;
- &lt;li&gt;
+ break some existing code. See <a href="/libs/iostreams/doc/index.html?path=12">Release
+ Notes</a> for details.
+ </li>
+ <li>
Numerous other bug fixes and optimizations.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/thread/index.html"&gt;Thread&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/thread/index.html">Thread</a>:</span>
+ <ul>
+ <li>
Instances of boost::thread and of the various lock types are now movable.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Threads can be interrupted at interruption points.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Condition variables can now be used with any type that implements the
- Lockable concept, through the use of &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable_any&lt;/span&gt;&lt;/code&gt;
- (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition&lt;/span&gt;&lt;/code&gt; is a typedef to &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable_any&lt;/span&gt;&lt;/code&gt;, provided for
- backwards compatibility). &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;condition_variable&lt;/span&gt;&lt;/code&gt;
- is provided as an optimization, and will only work with &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;unique_lock&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;li&gt;
+ Lockable concept, through the use of <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>
+ (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition</span></code> is a typedef to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>, provided for
+ backwards compatibility). <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable</span></code>
+ is provided as an optimization, and will only work with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">&gt;</span></code>
+ (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span></code>).
+ </li>
+ <li>
Thread IDs are separated from boost::thread, so a thread can obtain it's
- own ID (using &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;this_thread&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;get_id&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;),
+ own ID (using <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">this_thread</span><span class="special">::</span><span class="identifier">get_id</span><span class="special">()</span></code>),
and IDs can be used as keys in associative containers, as they have the
full set of comparison operators.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Timeouts are now implemented using the Boost DateTime library, through
- a typedef &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;system_time&lt;/span&gt;&lt;/code&gt; for absolute timeouts,
- and with support for relative timeouts in many cases. &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;xtime&lt;/span&gt;&lt;/code&gt;
+ a typedef <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system_time</span></code> for absolute timeouts,
+ and with support for relative timeouts in many cases. <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">xtime</span></code>
is supported for backwards compatibility only.
- &lt;/li&gt;
- &lt;li&gt;
- Locks are implemented as publicly accessible templates &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;lock_guard&lt;/span&gt;&lt;/code&gt;, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;unique_lock&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;shared_lock&lt;/span&gt;&lt;/code&gt;, and &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;upgrade_lock&lt;/span&gt;&lt;/code&gt;,
+ </li>
+ <li>
+ Locks are implemented as publicly accessible templates <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">lock_guard</span></code>, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span></code>,
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_lock</span></code>, and <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">upgrade_lock</span></code>,
which are templated on the type of the mutex. The Lockable concept has
- been extended to include publicly available &lt;code&gt;&lt;span class="identifier"&gt;lock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="identifier"&gt;unlock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; member functions, which are used by
+ been extended to include publicly available <code><span class="identifier">lock</span><span class="special">()</span></code> and <code><span class="identifier">unlock</span><span class="special">()</span></code> member functions, which are used by
the lock types.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;try_mutex&lt;/span&gt;&lt;/code&gt; has been removed, and the
- functionality subsumed into &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;try_mutex&lt;/span&gt;&lt;/code&gt; is left as a typedef, but
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> has been removed, and the
+ functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span></code>.
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> is left as a typedef, but
is no longer a separate class.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_try_mutex&lt;/span&gt;&lt;/code&gt; has been removed,
- and the functionality subsumed into &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;recursive_try_mutex&lt;/span&gt;&lt;/code&gt; is left as a typedef,
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> has been removed,
+ and the functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_mutex</span></code>.
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> is left as a typedef,
but is no longer a separate class.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;detail&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;thread&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;lock_ops&lt;/span&gt;&lt;/code&gt; has been removed. Code that
- relies on the &lt;code&gt;&lt;span class="identifier"&gt;lock_ops&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">detail</span><span class="special">::</span><span class="identifier">thread</span><span class="special">::</span><span class="identifier">lock_ops</span></code> has been removed. Code that
+ relies on the <code><span class="identifier">lock_ops</span></code>
implementation detail will no longer work, as this has been removed,
- as it is no longer necessary now that mutex types now have public &lt;code&gt;&lt;span class="identifier"&gt;lock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- and &lt;code&gt;&lt;span class="identifier"&gt;unlock&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ as it is no longer necessary now that mutex types now have public <code><span class="identifier">lock</span><span class="special">()</span></code>
+ and <code><span class="identifier">unlock</span><span class="special">()</span></code>
member functions.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;&lt;/code&gt; constructors
+ </li>
+ <li>
+ <code><span class="identifier">scoped_lock</span></code> constructors
with a second parameter of type bool are no longer provided. With previous
- boost releases, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;
- &lt;span class="identifier"&gt;some_lock&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;some_mutex&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="keyword"&gt;false&lt;/span&gt;&lt;span class="special"&gt;);&lt;/span&gt;&lt;/code&gt;
+ boost releases, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
+ <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="keyword">false</span><span class="special">);</span></code>
could be used to create a lock object that was associated with a mutex,
but did not lock it on construction. This facility has now been replaced
- with the constructor that takes a &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;defer_lock_type&lt;/span&gt;&lt;/code&gt;
- as the second parameter: &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;mutex&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;scoped_lock&lt;/span&gt;
- &lt;span class="identifier"&gt;some_lock&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;some_mutex&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;defer_lock&lt;/span&gt;&lt;span class="special"&gt;);&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- The broken &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;read_write_mutex&lt;/span&gt;&lt;/code&gt; has been replaced
- with &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;shared_mutex&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/wave/index.html"&gt;Wave&lt;/a&gt;:&lt;/span&gt; Standards conformant
+ with the constructor that takes a <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock_type</span></code>
+ as the second parameter: <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
+ <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock</span><span class="special">);</span></code>
+ </li>
+ <li>
+ The broken <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">read_write_mutex</span></code> has been replaced
+ with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_mutex</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/wave/index.html">Wave</a>:</span> Standards conformant
implementation of the mandated C99/C++ preprocessor functionality packed
behind an easy to use iterator interface, from Hartmut Kaiser. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
+ <ul>
+ <li>
Added the possibility to continue the preprocessing after an error occured.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added the macro introspection API to the wave::context object.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added threading support to the library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Improved the overall performance by upto 30%.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Changed and unified preprocessor hook interface (this is an interface
breaking change!), added several new preprocessor hook functions.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added serialization support.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added new examples (for instance: Hannibal - a partial C++ parser, by
Danny Havenith).
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added a new lexical analyzer based on Ben Hansons Lexertl library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Fixed a large number of other bugs and problems.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/xpressive/index.html"&gt;Xpressive&lt;/a&gt;:&lt;/span&gt; Regular
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span> Regular
expressions that can be written as strings or as expression templates, and
that can refer to each other and themselves recursively with the power of
context-free grammars, from Eric Niebler. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
- Added &lt;em&gt;semantic actions&lt;/em&gt; to static regexes. A semantic
+ <ul>
+ <li>
+ Added <em>semantic actions</em> to static regexes. A semantic
action is code that executes when part of a regular expression matches.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;custom assertions&lt;/em&gt; to static regexes. A custom
+ </li>
+ <li>
+ Added <em>custom assertions</em> to static regexes. A custom
assertion is a Boolean predicate that can participate in the regex match.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;named regexes&lt;/em&gt; for embedding a static or dynamic
+ </li>
+ <li>
+ Added <em>named regexes</em> for embedding a static or dynamic
regex into a dynamic regex. This can be used to create dynamic regex
grammars.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;em&gt;named captures&lt;/em&gt; to dynamic regexes, like Perl.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/libs/functional/hash/index.html"&gt;Hash&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ Added <em>named captures</em> to dynamic regexes, like Perl.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
A TR1 hash
function object, from Daniel James. Highlights:
- &lt;ul&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="keyword"&gt;long&lt;/span&gt; &lt;span class="keyword"&gt;long&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;complex&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ <ul>
+ <li>
+ Support for <code><span class="keyword">long</span> <span class="keyword">long</span></code>,
+ <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">complex</span></code>.
+ </li>
+ <li>
Improved the algorithm for hashing floating point numbers.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
A few bug and warning fixes.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;/div&gt;
- &lt;div id="version_1_35_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/beman_dawes.html"&gt;Beman Dawes&lt;/a&gt; managed this
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_35_0.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ </div>
+ <div id="version_1_35_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/beman_dawes.html">Beman Dawes</a> managed this
release.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix Release.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description><div class="description">
- &lt;p&gt;
+ <p>
This is a bug fix release addressing many problems with the 1.34.0 release. It
is a recommended upgrade for all users of Boost 1.34.0. For a complete list of
- fixes see &lt;a href="http://svn.boost.org/trac/boost/query?status=closed&amp;amp;milestone=Boost+1.34.1"&gt;Boost
- Trac&lt;/a&gt;.
- &lt;/p&gt;
- &lt;div id="version_1_34_1.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ fixes see <a href="http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">Boost
+ Trac</a>.
+ </p>
+ <div id="version_1_34_1.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
New in this release is improved support for the IBM XL C/C++ compiler.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. New in this release The following compilers
and platforms have been extensively tested with Boost, although many other
- compilers and platforms will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 4.0.1 on Mac OS
+ compilers and platforms will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 4.0.1 on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.8.2 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org/"&gt;GNU C++&lt;/a&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org/">GNU C++</a>
+ <ul>
+ <li>
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
4.1.x on Solaris
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
3.4.x on Windows
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.hp.com/go/c++"&gt;HP aC++ A.06.14&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 9.1 on Windows, 9.0 on Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com/"&gt;Metrowerks CodeWarrior&lt;/a&gt; 9.4
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+ </li>
+ <li>
+ <a href="http://www.hp.com/go/c++">HP aC++ A.06.14</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 9.1 on Windows, 9.0 on Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com/">Metrowerks CodeWarrior</a> 9.4
on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://developers.sun.com/sunstudio/index.jsp"&gt;Sun Studio 11&lt;/a&gt;
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ <li>
+ <a href="http://developers.sun.com/sunstudio/index.jsp">Sun Studio 11</a>
on Solaris.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_1.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/thomas_witt.html"&gt;Thomas Witt&lt;/a&gt; managed this
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_1.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/thomas_witt.html">Thomas Witt</a> managed this
release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Kim Barrett consolidating Boost.Iostreams
changes from various branches and Rene Rivera for general build and installation
support.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.34.0</title><pubDate>Sat, 12 May 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.34.0</title><pubDate>Sat, 12 May 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Foreach, Statechart, TR1, Typeof, Xpressive. Updated Libraries:
Assign, Date_time, Filesystem, Function, Hash, Graph, MultiArray, Multi-Index,
Optional, Parameter, Pointer Container, Python, Signals, Smart Pointer, String
Algorithm, Wave
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975><description><div class="description">
- &lt;div id="version_1_34_0.new_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/foreach.html"&gt;Foreach Library&lt;/a&gt;:&lt;/span&gt; &lt;code&gt;&lt;span class="identifier"&gt;BOOST_FOREACH&lt;/span&gt;&lt;/code&gt; macro for easily iterating
+ <div id="version_1_34_0.new_libraries">
+ <h3><span class="link">New Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/foreach.html">Foreach Library</a>:</span> <code><span class="identifier">BOOST_FOREACH</span></code> macro for easily iterating
over the elements of a sequence, from Eric Niebler.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/statechart/doc/index.html"&gt;Statechart
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/statechart/doc/index.html">Statechart
+ Library</a>:</span>
Arbitrarily complex finite state machines can be implemented
in easily readable and maintainable C++ code, from Andreas Huber.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/tr1/index.html"&gt;TR1 Library&lt;/a&gt;:&lt;/span&gt; An
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/tr1/index.html">TR1 Library</a>:</span> An
implementation of the C++ Technical Report on Standard Library Extensions,
from John Maddock. This library does not itself implement the TR1 components,
rather it's a thin wrapper that will include your standard library's TR1
implementation (if it has one), otherwise it will include the Boost Library
- equivalents, and import them into namespace &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;tr1&lt;/span&gt;&lt;/code&gt;.
+ equivalents, and import them into namespace <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">tr1</span></code>.
Highlights include: Reference Wrappers, Smart Pointers, result_of, Function
Object Binders, Polymorphic function wrappers, Type Traits, Random Number
Generators and Distributions, Tuples, Fixed Size Array, Hash Function Objects,
Regular Expressions, and Complex Number Additional Algorithms.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/typeof.html"&gt;Typeof Library&lt;/a&gt;:&lt;/span&gt; Typeof
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/typeof.html">Typeof Library</a>:</span> Typeof
operator emulation, from Arkadiy Vertleyb and Peder Holt.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/xpressive.html"&gt;Xpressive Library&lt;/a&gt;:&lt;/span&gt; Regular
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/xpressive.html">Xpressive Library</a>:</span> Regular
expressions that can be written as strings or as expression templates, and
that can refer to each other and themselves recursively with the power of
context-free grammars, from Eric Niebler.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/assign/index.html"&gt;Assign Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="identifier"&gt;ptr_map&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;key&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- via the new function &lt;code&gt;&lt;span class="identifier"&gt;ptr_map_insert&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- Support for initialization of &lt;a href="/doc/libs/1_34_0/libs/ptr_container/index.html"&gt;Pointer
- Containers&lt;/a&gt; when the containers hold pointers to an abstract base
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/assign/index.html">Assign Library</a>:</span>
+ <ul>
+ <li>
+ Support for <code><span class="identifier">ptr_map</span><span class="special">&lt;</span><span class="identifier">key</span><span class="special">,</span><span class="identifier">T</span><span class="special">&gt;</span></code>
+ via the new function <code><span class="identifier">ptr_map_insert</span><span class="special">()</span></code>
+ </li>
+ <li>
+ Support for initialization of <a href="/doc/libs/1_34_0/libs/ptr_container/index.html">Pointer
+ Containers</a> when the containers hold pointers to an abstract base
class.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/date_time.html"&gt;Date_time library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for new US/Canada timezone rules and other bug fixes. See &lt;a href="/doc/libs/1_34_0/doc/html/date_time/details.html#changes"&gt;Change
- History&lt;/a&gt; for details.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/index.htm"&gt;Filesystem
- Library&lt;/a&gt;:&lt;/span&gt; Major upgrade in preparation for submission to the C++ Standards
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/date_time.html">Date_time library</a>:</span>
+ <ul>
+ <li>
+ Support for new US/Canada timezone rules and other bug fixes. See <a href="/doc/libs/1_34_0/doc/html/date_time/details.html#changes">Change
+ History</a> for details.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/filesystem/doc/index.htm">Filesystem
+ Library</a>:</span> Major upgrade in preparation for submission to the C++ Standards
Committee for TR2. Changes include:
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Internationalization"&gt;Internationalization&lt;/a&gt;,
- provided by class templates &lt;em&gt;basic_path&lt;/em&gt;, &lt;em&gt;basic_filesystem_error&lt;/em&gt;,
- &lt;em&gt;basic_directory_iterator&lt;/em&gt;, and &lt;em&gt;basic_directory_entry&lt;/em&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Simplification"&gt;Simplification&lt;/a&gt;
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Internationalization">Internationalization</a>,
+ provided by class templates <em>basic_path</em>, <em>basic_filesystem_error</em>,
+ <em>basic_directory_iterator</em>, and <em>basic_directory_entry</em>.
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Simplification">Simplification</a>
of the path interface by eliminating special constructors to identify
native formats.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Rationalization"&gt;Rationalization&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Rationalization">Rationalization</a>
of predicate function design, including the addition of several new functions.
- &lt;/li&gt;
- &lt;li&gt;
- Clearer specification by reference to &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/design.htm#POSIX-01"&gt;POSIX&lt;/a&gt;,
+ </li>
+ <li>
+ Clearer specification by reference to <a href="/doc/libs/1_34_0/libs/filesystem/doc/design.htm#POSIX-01">POSIX</a>,
the ISO/IEEE Single Unix Standard, with provisions for Windows and other
operating systems.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Preservation"&gt;Preservation&lt;/a&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#Preservation">Preservation</a>
of existing user code whenever possible.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#More_efficient"&gt;More
- efficient&lt;/a&gt; directory iteration.
- &lt;/li&gt;
- &lt;li&gt;
- Addition of a &lt;a href="/doc/libs/1_34_0/libs/filesystem/doc/tr2_proposal.html#Class-template-basic_recursive_directory_iterator"&gt;recursive
- directory iterator&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/function/index.html"&gt;Function Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/filesystem/doc/i18n.html#More_efficient">More
+ efficient</a> directory iteration.
+ </li>
+ <li>
+ Addition of a <a href="/doc/libs/1_34_0/libs/filesystem/doc/tr2_proposal.html#Class-template-basic_recursive_directory_iterator">recursive
+ directory iterator</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/function/index.html">Function Library</a>:</span>
Boost.Function
now implements a small buffer optimization, which can drastically improve
the performance when copying or constructing Boost.Function objects storing
- small function objects. For instance, &lt;code&gt;&lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;:&lt;/span&gt;&lt;span class="identifier"&gt;foo&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;
- &lt;span class="special"&gt;&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;x&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_1&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;
- &lt;span class="identifier"&gt;_2&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;
+ small function objects. For instance, <code><span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">:</span><span class="identifier">foo</span><span class="special">,</span>
+ <span class="special">&amp;</span><span class="identifier">x</span><span class="special">,</span> <span class="identifier">_1</span><span class="special">,</span>
+ <span class="identifier">_2</span><span class="special">)</span></code>
requires no heap allocation when placed into a Boost.Function object.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/functional/hash/index.html"&gt;Functional/Hash
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/functional/hash/index.html">Functional/Hash
+ Library</a>:</span>
+ <ul>
+ <li>
Use declarations for standard classes, so that the library doesn't need
to include all of their headers
- &lt;/li&gt;
- &lt;li&gt;
- Deprecated the &lt;tt&gt;&amp;lt;boost/functional&lt;em&gt;hash&lt;/em&gt;*.hpp&amp;gt;&lt;/tt&gt;
+ </li>
+ <li>
+ Deprecated the <tt>&lt;boost/functional<em>hash</em>*.hpp&gt;</tt>
headers.
- &lt;/li&gt;
- &lt;li&gt;
- Add support for the &lt;code&gt;&lt;span class="identifier"&gt;BOOST_HASH_NO_EXTENSIONS&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ Add support for the <code><span class="identifier">BOOST_HASH_NO_EXTENSIONS</span></code>
macro, which disables the extensions to TR1
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Minor improvements to the hash functions for floating point numbers.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/graph/doc/index.html"&gt;Graph Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/maximum_matching.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;edmonds_maximum_cardinality_matching&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/graph/doc/index.html">Graph Library</a>:</span>
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/maximum_matching.html"><code><span class="identifier">edmonds_maximum_cardinality_matching</span></code></a>,
from Aaron Windsor.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/lengauer_tarjan_dominator.htm"&gt;&lt;code&gt;&lt;span class="identifier"&gt;lengauer_tarjan_dominator_tree&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/lengauer_tarjan_dominator.htm"><code><span class="identifier">lengauer_tarjan_dominator_tree</span></code></a>,
from JongSoo Park.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/compressed_sparse_row.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;compressed_sparse_row_graph&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/compressed_sparse_row.html"><code><span class="identifier">compressed_sparse_row_graph</span></code></a>,
from Jeremiah Willcock and Douglas Gregor of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/sorted_erdos_renyi_gen.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;sorted_erdos_renyi_iterator&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;,
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/sorted_erdos_renyi_gen.html"><code><span class="identifier">sorted_erdos_renyi_iterator</span></code></a>,
from Jeremiah Willcock of Indiana University.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/biconnected_components.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;biconnected_components&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/biconnected_components.html"><code><span class="identifier">biconnected_components</span></code></a> now
supports a visitor and named parameters, from Janusz Piwowarski.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/adjacency_matrix.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;adjacency_matrix&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now models
- the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/BidirectionalGraph.html"&gt;Bidirectional
- Graph&lt;/a&gt; concept.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/graph/doc/dijkstra_shortest_paths.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; now
- calls &lt;code&gt;&lt;span class="identifier"&gt;vis&lt;/span&gt;&lt;span class="special"&gt;.&lt;/span&gt;&lt;span class="identifier"&gt;initialize_vertex&lt;/span&gt;&lt;/code&gt; for each vertex during
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/adjacency_matrix.html"><code><span class="identifier">adjacency_matrix</span></code></a> now models
+ the <a href="/doc/libs/1_34_0/libs/graph/doc/BidirectionalGraph.html">Bidirectional
+ Graph</a> concept.
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/graph/doc/dijkstra_shortest_paths.html"><code><span class="identifier">dijkstra_shortest_paths</span></code></a> now
+ calls <code><span class="identifier">vis</span><span class="special">.</span><span class="identifier">initialize_vertex</span></code> for each vertex during
initialization.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;em&gt;Note:&lt;/em&gt; the name of the compiled library
- for the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/read_graphviz.html"&gt;GraphViz
- reader&lt;/a&gt; has changed to &lt;tt&gt;boost_graph&lt;/tt&gt; (from &lt;tt&gt;bgl-viz&lt;/tt&gt;)
+ </li>
+ <li>
+ <em>Note:</em> the name of the compiled library
+ for the <a href="/doc/libs/1_34_0/libs/graph/doc/read_graphviz.html">GraphViz
+ reader</a> has changed to <tt>boost_graph</tt> (from <tt>bgl-viz</tt>)
to match Boost conventions.
- &lt;/li&gt;
- &lt;li&gt;
- See the &lt;a href="/doc/libs/1_34_0/libs/graph/doc/history.html#1.34.0"&gt;complete
- revision history&lt;/a&gt; for more information.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/multi_array/index.html"&gt;MultiArray
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ See the <a href="/doc/libs/1_34_0/libs/graph/doc/history.html#1.34.0">complete
+ revision history</a> for more information.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/multi_array/index.html">MultiArray
+ Library</a>:</span>
Boost.MultiArray now by default provides range-checking for
- &lt;code&gt;&lt;span class="keyword"&gt;operator&lt;/span&gt;&lt;span class="special"&gt;[]&lt;/span&gt;&lt;/code&gt;.
- Range checking can be disabled by defining the macro &lt;code&gt;&lt;span class="identifier"&gt;BOOST_DISABLE_ASSERTS&lt;/span&gt;&lt;/code&gt;
- before including &lt;tt&gt;multi_array.hpp&lt;/tt&gt;. A bug in &lt;code&gt;&lt;span class="identifier"&gt;multi_array&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;resize&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
+ <code><span class="keyword">operator</span><span class="special">[]</span></code>.
+ Range checking can be disabled by defining the macro <code><span class="identifier">BOOST_DISABLE_ASSERTS</span></code>
+ before including <tt>multi_array.hpp</tt>. A bug in <code><span class="identifier">multi_array</span><span class="special">::</span><span class="identifier">resize</span><span class="special">()</span></code>
related to storage orders was fixed.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- New &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rnd_indices"&gt;random
- access indices&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Non key-based indices feature new &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rearrange"&gt;rearrange
- facilities&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span>
+ <ul>
+ <li>
+ New <a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rnd_indices">random
+ access indices</a>.
+ </li>
+ <li>
+ Non key-based indices feature new <a href="/doc/libs/1_34_0/libs/multi_index/doc/tutorial/indices.html#rearrange">rearrange
+ facilities</a>.
+ </li>
+ <li>
This version also includes a number of optimizations and usage improvements.
- For a complete list of changes, see the library &lt;a href="/doc/libs/1_34_0/libs/multi_index/doc/release_notes.html#boost_1_34"&gt;release
- notes&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/optional/index.html"&gt;Optional Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;none_t&lt;/span&gt; &lt;span class="keyword"&gt;and&lt;/span&gt;
- &lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;none&lt;/span&gt;&lt;/code&gt; now added to Optional's documentation
- &lt;/li&gt;
- &lt;li&gt;
- Relational operators now directly support arguments of type &lt;code&gt;&lt;span class="char"&gt;'T'&lt;/span&gt;&lt;/code&gt; and &lt;code&gt;&lt;span class="char"&gt;'none_t'&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- operator-&amp;gt;() now also works with reference types.
- &lt;/li&gt;
- &lt;li&gt;
- Helper functions &lt;code&gt;&lt;span class="identifier"&gt;make_optional&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;val&lt;/span&gt;&lt;span class="special"&gt;),&lt;/span&gt; &lt;span class="identifier"&gt;make_optional&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;cond&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;val&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt; &lt;span class="keyword"&gt;and&lt;/span&gt; &lt;span class="identifier"&gt;get_optional_value_or&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span c
lass="identifier"&gt;opt&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt;&lt;span class="identifier"&gt;alternative_value&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;
+ For a complete list of changes, see the library <a href="/doc/libs/1_34_0/libs/multi_index/doc/release_notes.html#boost_1_34">release
+ notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/optional/index.html">Optional Library</a>:</span>
+ <ul>
+ <li>
+ <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">none_t</span> <span class="keyword">and</span>
+ <span class="identifier">boost</span><span class="special">::</span><span class="identifier">none</span></code> now added to Optional's documentation
+ </li>
+ <li>
+ Relational operators now directly support arguments of type <code><span class="char">'T'</span></code> and <code><span class="char">'none_t'</span></code>
+ </li>
+ <li>
+ operator-&gt;() now also works with reference types.
+ </li>
+ <li>
+ Helper functions <code><span class="identifier">make_optional</span><span class="special">(</span><span class="identifier">val</span><span class="special">),</span> <span class="identifier">make_optional</span><span class="special">(</span><span class="identifier">cond</span><span class="special">,</span><span class="identifier">val</span><span class="special">)</span> <span class="keyword">and</span> <span class="identifier">get_optional_value_or</span><span class="special">(</span><span class="identifier">opt</span><span class="special">,</span><span class="identifier">alternative_value</span><span class="special">)</span&g
t;</code>
added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Constructor taking a boolean condition (as well as a value) added.
- &lt;/li&gt;
- &lt;li&gt;
- Member function &lt;code&gt;&lt;span class="identifier"&gt;get_value_or&lt;/span&gt;&lt;span class="special"&gt;(&lt;/span&gt;&lt;span class="identifier"&gt;alternative_value&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt; added.
- &lt;/li&gt;
- &lt;li&gt;
- Incompatbility bug with mpl::apply&amp;lt;&amp;gt; fixed.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Member function <code><span class="identifier">get_value_or</span><span class="special">(</span><span class="identifier">alternative_value</span><span class="special">)</span></code> added.
+ </li>
+ <li>
+ Incompatbility bug with mpl::apply&lt;&gt; fixed.
+ </li>
+ <li>
Converting assignment bug with uninitialized lvalues fixed.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/parameter/index.html"&gt;Parameter
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Every ArgumentPack is now a valid &lt;a href="/doc/libs/1_34_0/libs/mpl/doc/refmanual/forward-sequence.html"&gt;MPL
- Forward Sequence.&lt;/a&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/parameter/index.html">Parameter
+ Library</a>:</span>
+ <ul>
+ <li>
+ Every ArgumentPack is now a valid <a href="/doc/libs/1_34_0/libs/mpl/doc/refmanual/forward-sequence.html">MPL
+ Forward Sequence.</a>
+ </li>
+ <li>
Support for unnamed arguments (those whose keyword is deduced from their
types) is added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for named and unnamed template arguments is added.
- &lt;/li&gt;
- &lt;li&gt;
- New overload generation macros solve the &lt;a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1385.htm"&gt;forwarding
- problem&lt;/a&gt; directly.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ New overload generation macros solve the <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1385.htm">forwarding
+ problem</a> directly.
+ </li>
+ <li>
See also the Python library changes, below.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/ptr_container/index.html"&gt;Pointer
- Container Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Support for serialization via &lt;a href="/doc/libs/1_34_0/libs/serialization/index.html"&gt;Boost.Serialization.&lt;/a&gt;
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/ptr_container/index.html">Pointer
+ Container Library</a>:</span>
+ <ul>
+ <li>
+ Support for serialization via <a href="/doc/libs/1_34_0/libs/serialization/index.html">Boost.Serialization.</a>
+ </li>
+ <li>
Exceptions can be disabled by defining the macro BOOST_PTR_CONTAINER_NO_EXCEPTIONS
before including any header. This macro is defined by default if BOOST_NO_EXCEPTIONS
is defined.
- &lt;/li&gt;
- &lt;li&gt;
- Additional &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;auto_ptr&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- overloads added s.t. one can also pass &lt;code&gt;&lt;span class="identifier"&gt;std&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;auto_ptr&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt; instead of only &lt;code&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;/code&gt; arguments to member functions.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;transfer&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;
- now has weaker requirements s.t. one can transfer objects from &lt;code&gt;&lt;span class="identifier"&gt;ptr_container&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;Derived&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- to &lt;code&gt;&lt;span class="identifier"&gt;ptr_container&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;Base&lt;/span&gt;&lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;,
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/python/index.html"&gt;Python Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Additional <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;</span></code>
+ overloads added s.t. one can also pass <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;</span></code> instead of only <code><span class="identifier">T</span><span class="special">*</span></code> arguments to member functions.
+ </li>
+ <li>
+ <code><span class="identifier">transfer</span><span class="special">()</span></code>
+ now has weaker requirements s.t. one can transfer objects from <code><span class="identifier">ptr_container</span><span class="special">&lt;</span><span class="identifier">Derived</span><span class="special">&gt;</span></code>
+ to <code><span class="identifier">ptr_container</span><span class="special">&lt;</span><span class="identifier">Base</span><span class="special">&gt;</span></code>,
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/python/index.html">Python Library</a>:</span>
+ <ul>
+ <li>
Boost.Python now automatically appends C++ signatures to docstrings.
- The new &lt;a href="/doc/libs/1_34_0/libs/python/doc/v2/docstring_options.html"&gt;&lt;tt&gt;docstring_options.hpp&lt;/tt&gt;&lt;/a&gt;
+ The new <a href="/doc/libs/1_34_0/libs/python/doc/v2/docstring_options.html"><tt>docstring_options.hpp</tt></a>
header is available to control the content of docstrings.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/python/doc/v2/stl_iterator.html#stl_input_iterator-spec"&gt;&lt;code&gt;&lt;span class="identifier"&gt;stl_input_iterator&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;, for turning
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/python/doc/v2/stl_iterator.html#stl_input_iterator-spec"><code><span class="identifier">stl_input_iterator</span></code></a>, for turning
a Python iterable object into an STL input iterator, from Eric Niebler.
- &lt;/li&gt;
- &lt;li&gt;
- Support for &lt;code&gt;&lt;span class="keyword"&gt;void&lt;/span&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;/code&gt;
+ </li>
+ <li>
+ Support for <code><span class="keyword">void</span><span class="special">*</span></code>
conversions is added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Integrated support for wrapping C++ functions built with the parameter
library; keyword names are automatically known to docsstrings.
- &lt;/li&gt;
- &lt;li&gt;
- Enhancements to the API for better embedding support (&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;import&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;, &lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;exec&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;, and
&lt;code&gt;&lt;span class="identifier"&gt;boost&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;python&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;exec_file&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/doc/html/signals.html"&gt;Signals Library&lt;/a&gt;:&lt;/span&gt; More
+ </li>
+ <li>
+ Enhancements to the API for better embedding support (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::</span><span class="identifier">import</span><span class="special">()</span></code>, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::</span><span class="identifier">exec</span><span class="special">()</span></code>, and <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">python</span><span class="special">::
</span><span class="identifier">exec_file</span><span class="special">()</span></code>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/doc/html/signals.html">Signals Library</a>:</span> More
improvements to signal invocation performance from Robert Zeh.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/smart_ptr/smart_ptr.htm"&gt;Smart Pointers
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/shared_ptr.htm#allocator_constructor"&gt;Allocator
- support&lt;/a&gt; as proposed in &lt;a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1851.pdf"&gt;N1851&lt;/a&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/smart_ptr/smart_ptr.htm">Smart Pointers
+ Library</a>:</span>
+ <ul>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/smart_ptr/shared_ptr.htm#allocator_constructor">Allocator
+ support</a> as proposed in <a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1851.pdf">N1851</a>
(162 Kb PDF).
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_cast.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;pointer_cast&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and &lt;a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_to_other.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;pointer_to_other&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; utilities
+ </li>
+ <li>
+ <a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_cast.html"><code><span class="identifier">pointer_cast</span></code></a> and <a href="/doc/libs/1_34_0/libs/smart_ptr/pointer_to_other.html"><code><span class="identifier">pointer_to_other</span></code></a> utilities
to allow pointer-independent code, from Ion Gaztanaga.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/algorithm/string/index.html"&gt;String
- Algorithm Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;lexicographical_compare&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;join&lt;/span&gt;&lt;/code&gt;
- &lt;/li&gt;
- &lt;li&gt;
- New comparison predicates &lt;code&gt;&lt;span class="identifier"&gt;is_less&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="identifier"&gt;is_not_greater&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- Negative indexes support (like Perl) in various algorihtms (&lt;code&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;span class="identifier"&gt;_head&lt;/span&gt;&lt;span class="special"&gt;/&lt;/span&gt;&lt;span class="identifier"&gt;tail&lt;/span&gt;&lt;/code&gt;,
- &lt;code&gt;&lt;span class="special"&gt;*&lt;/span&gt;&lt;span class="identifier"&gt;_nth&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_34_0/libs/wave/index.html"&gt;Wave Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/algorithm/string/index.html">String
+ Algorithm Library</a>:</span>
+ <ul>
+ <li>
+ <code><span class="identifier">lexicographical_compare</span></code>
+ </li>
+ <li>
+ <code><span class="identifier">join</span></code>
+ </li>
+ <li>
+ New comparison predicates <code><span class="identifier">is_less</span></code>,
+ <code><span class="identifier">is_not_greater</span></code>.
+ </li>
+ <li>
+ Negative indexes support (like Perl) in various algorihtms (<code><span class="special">*</span><span class="identifier">_head</span><span class="special">/</span><span class="identifier">tail</span></code>,
+ <code><span class="special">*</span><span class="identifier">_nth</span></code>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_34_0/libs/wave/index.html">Wave Library</a>:</span>
+ <ul>
+ <li>
Wave now correctly recognizes pp-number tokens as mandated by the C++
Standard, which are converted to C++ tokens right before they are returned
from the library.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Several new preprocessing hooks have been added. For a complete description
- please refer to the related documentation page: &lt;a href="/doc/libs/1_34_0/libs/wave/doc/class_reference_ctxpolicy.html"&gt;The
- Context Policy&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
+ please refer to the related documentation page: <a href="/doc/libs/1_34_0/libs/wave/doc/class_reference_ctxpolicy.html">The
+ Context Policy</a>.
+ </li>
+ <li>
Shared library (dll) support has been added for the generated Wave libraries.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The overall error handling has been improved. It is now possible to recover
and continue after an error or a warning was issued.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for optional comment and/or full whitespace preservation in the
generated output stream has been added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The Wave library now performs automatic include guard detection to avoid
accessing header files more than once, if appropriate.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Full interactive mode has been added to the Wave tool. Now the Wave tool
can be used just like Python or Perl for instance to interactively try
out your BOOST_PP macros. Additionally it is now possible to load and
save the current state of an interactive session (macro tables et.al.).
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
The overall performance has been improved by upto 40-60%, depending on
the concrete files to process.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support for new pragmas has been added allowing to control certain library
features from inside the preprocessed sources (partial output redirection,
control of generated whitespace and #line directives).
- &lt;/li&gt;
- &lt;li&gt;
- Optional support for #pragma message &amp;quot;...&amp;quot; has been added.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Optional support for #pragma message &quot;...&quot; has been added.
+ </li>
+ <li>
This version also includes a number of bug fixes and usage improvements.
- For a complete list of changes, see the libraries &lt;a href="/doc/libs/1_34_0/libs/wave/ChangeLog"&gt;change
- log&lt;/a&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ For a complete list of changes, see the libraries <a href="/doc/libs/1_34_0/libs/wave/ChangeLog">change
+ log</a>.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. The following compilers and platforms have been
extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression
- test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 4.0.1 on Mac OS
+ will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression
+ test results</a>.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 4.0.1 on Mac OS
X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.8.2 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org/"&gt;GNU C++&lt;/a&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org/">GNU C++</a>
+ <ul>
+ <li>
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
4.1.x on Solaris
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
3.4.x on Windows
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP aC++ A.06.14&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 9.1 on Windows, 9.0 on Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com/"&gt;Metrowerks CodeWarrior&lt;/a&gt; 9.4
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP aC++ A.06.14</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 9.1 on Windows, 9.0 on Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com/">Metrowerks CodeWarrior</a> 9.4
on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://developers.sun.com/sunstudio/compilers_index.html"&gt;Sun
- Studio 11&lt;/a&gt; on Solaris.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_34_0.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;a href="/users/people/thomas_witt.html"&gt;Thomas Witt&lt;/a&gt; managed this
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ <li>
+ <a href="http://developers.sun.com/sunstudio/compilers_index.html">Sun
+ Studio 11</a> on Solaris.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_34_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/thomas_witt.html">Thomas Witt</a> managed this
release.
- &lt;/p&gt;
- &lt;p&gt;
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Vladimir Prus for making Boost.Build
version 2 a reality, David Abrahams for authoring a new getting started guide
and Greg D. for answering countless questions.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item><item><title>asio Formal Review Begins</title><pubDate>Sun, 10 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
- The review will run until Friday December 23rd. The &lt;a href="http://asio.sourceforge.net/"&gt;Boost.Asio&lt;/a&gt;
+ </p>
+ </div>
+</div></description></item><item><title>asio Formal Review Begins</title><pubDate>Sun, 10 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ The review will run until Friday December 23rd. The <a href="http://asio.sourceforge.net/">Boost.Asio</a>
library is intended for programmers using C++ for systems programming, where
access to operating system functionality such as networking is often required.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div class="description"&gt;
- &lt;p&gt;
- The review will run until Friday December 23rd. The &lt;a href="http://asio.sourceforge.net/"&gt;Boost.Asio&lt;/a&gt;
+ </span></span></boostbook:purpose><description><div class="description">
+ <p>
+ The review will run until Friday December 23rd. The <a href="http://asio.sourceforge.net/">Boost.Asio</a>
library is intended for programmers using C++ for systems programming, where
access to operating system functionality such as networking is often required.
- &lt;/p&gt;
-&lt;/div&gt;</description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class="brief"&gt;&lt;span class="purpose"&gt;
+ </p>
+</div></description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash,
Multi-index Containers, Graph, Signals, Thread, and Wave.
- &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197><description>&lt;div class="description"&gt;
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197><description><div class="description">
- &lt;div id="version_1_33_1.updated_libraries"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/doc/html/any.html"&gt;Any Library&lt;/a&gt;:&lt;/span&gt; Cast
- to reference types introduced in 1.33.0 is now documented on &lt;code&gt;&lt;span class="identifier"&gt;any_cast&lt;/span&gt;&lt;/code&gt; documentation page.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/bind/bind.html"&gt;Bind Library&lt;/a&gt;:&lt;/span&gt; Bind
- expressions now support &lt;a href="/doc/libs/1_33_1/libs/bind/bind.html#operators"&gt;comparisons
- and negation&lt;/a&gt;. Example: &lt;code&gt;&lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_1&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;
- &lt;span class="special"&gt;&amp;lt;&lt;/span&gt; &lt;span class="identifier"&gt;bind&lt;/span&gt;&lt;span class="special"&gt;(&amp;amp;&lt;/span&gt;&lt;span class="identifier"&gt;X&lt;/span&gt;&lt;span class="special"&gt;::&lt;/span&gt;&lt;span class="identifier"&gt;name&lt;/span&gt;&lt;span class="special"&gt;,&lt;/span&gt; &lt;span class="identifier"&gt;_2&lt;/span&gt;&lt;span class="special"&gt;)&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/config/index.html"&gt;Config Library&lt;/a&gt;:&lt;/span&gt; Don't
- undef &lt;code&gt;&lt;span class="identifier"&gt;BOOST_LIB_TOOLSET&lt;/span&gt;&lt;/code&gt; after
+ <div id="version_1_33_1.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/doc/html/any.html">Any Library</a>:</span> Cast
+ to reference types introduced in 1.33.0 is now documented on <code><span class="identifier">any_cast</span></code> documentation page.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/bind/bind.html">Bind Library</a>:</span> Bind
+ expressions now support <a href="/doc/libs/1_33_1/libs/bind/bind.html#operators">comparisons
+ and negation</a>. Example: <code><span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_1</span><span class="special">)</span>
+ <span class="special">&lt;</span> <span class="identifier">bind</span><span class="special">(&amp;</span><span class="identifier">X</span><span class="special">::</span><span class="identifier">name</span><span class="special">,</span> <span class="identifier">_2</span><span class="special">)</span></code>.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/config/index.html">Config Library</a>:</span> Don't
+ undef <code><span class="identifier">BOOST_LIB_TOOLSET</span></code> after
use.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/python/doc/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/python/doc/index.html">Boost.Python</a>:</span>
+ <ul>
+ <li>
The build now assumes Python 2.4 by default, rather than 2.2
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Support Python that's built without Unicode support
- &lt;/li&gt;
- &lt;li&gt;
- Support for wrapping classes with overloaded address-of (&lt;code&gt;&lt;span class="special"&gt;&amp;amp;&lt;/span&gt;&lt;/code&gt;) operators
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/smart_ptr/index.html"&gt;Smart Pointer
- Library&lt;/a&gt;:&lt;/span&gt; Fixed problems under Metrowerks CodeWarrior on PowerPC (Mac
+ </li>
+ <li>
+ Support for wrapping classes with overloaded address-of (<code><span class="special">&amp;</span></code>) operators
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/smart_ptr/index.html">Smart Pointer
+ Library</a>:</span> Fixed problems under Metrowerks CodeWarrior on PowerPC (Mac
OS X) with inlining on, GNU GCC on PowerPC 64.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/regex/doc/index.html"&gt;Regex Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/regex/doc/index.html">Regex Library</a>:</span> Fixed
the supplied makefiles, and other small compiler specific changes. Refer
- to the &lt;a href="/doc/libs/1_33_1/libs/regex/doc/history.html"&gt;regex history
- page&lt;/a&gt; for more information on these and other small changes.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html"&gt;Iostreams
- Library&lt;/a&gt;:&lt;/span&gt;
+ to the <a href="/doc/libs/1_33_1/libs/regex/doc/history.html">regex history
+ page</a> for more information on these and other small changes.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/iostreams/doc/index.html">Iostreams
+ Library</a>:</span>
Improved the interface for accessing a chain's components,
- added &lt;code&gt;&lt;span class="identifier"&gt;is_open&lt;/span&gt;&lt;/code&gt; members to
+ added <code><span class="identifier">is_open</span></code> members to
the file and file descriptor devices, fixed memory-mapped files on Windows,
and made minor changes to the documentation.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/python/doc/index.html"&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/python/doc/index.html">Boost.Python</a>:</span>
+ <ul>
+ <li>
Added support for docstrings on nonstatic properties.
- &lt;/li&gt;
- &lt;li&gt;
- We now export the client-provided docstrings for &lt;code&gt;&lt;span class="identifier"&gt;init&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;optional&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&amp;gt;&lt;/span&gt; &lt;span class="special"&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;
- and &lt;em&gt;XXX&lt;/em&gt;&lt;code&gt;&lt;span class="identifier"&gt;_FUNCTION_OVERLOADS&lt;/span&gt;&lt;span class="special"&gt;()&lt;/span&gt;&lt;/code&gt; for only the last overload.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ We now export the client-provided docstrings for <code><span class="identifier">init</span><span class="special">&lt;</span><span class="identifier">optional</span><span class="special">&lt;&gt;</span> <span class="special">&gt;</span></code>
+ and <em>XXX</em><code><span class="identifier">_FUNCTION_OVERLOADS</span><span class="special">()</span></code> for only the last overload.
+ </li>
+ <li>
Support for Embedded VC++ 4 and GCC-3.3 on MacOS added
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Introduced better support for rvalue from-python conversions of shared_ptr.
- &lt;/li&gt;
- &lt;li&gt;
- Support for exposing &lt;code&gt;&lt;span class="identifier"&gt;vector&lt;/span&gt;&lt;span class="special"&gt;&amp;lt;&lt;/span&gt;&lt;span class="identifier"&gt;T&lt;/span&gt;&lt;span class="special"&gt;*&amp;gt;&lt;/span&gt;&lt;/code&gt; with the indexing suite.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
+ Support for exposing <code><span class="identifier">vector</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">*&gt;</span></code> with the indexing suite.
+ </li>
+ <li>
updated visual studio project build file.
- &lt;/li&gt;
- &lt;li&gt;
+ </li>
+ <li>
Added search feature to the index page.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/functional/hash/index.html"&gt;Functional/Hash
- Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/functional/hash/index.html">Functional/Hash
+ Library</a>:</span>
Fixed the points example.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html"&gt;Multi-index
- Containers Library&lt;/a&gt;:&lt;/span&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/multi_index/doc/index.html">Multi-index
+ Containers Library</a>:</span>
Fixed a problem with multithreaded code, and other
- minor changes. Refer to the library &lt;a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html#boost_1_33_1"&gt;release
- notes&lt;/a&gt; for further details.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/graph/doc/table_of_contents.html"&gt;Graph
- Library&lt;/a&gt;:&lt;/span&gt;
- &lt;ul&gt;
- &lt;li&gt;
- Fixed a problem with the relaxed heap on x86 Linux (fixes bug in &lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;).
- &lt;/li&gt;
- &lt;li&gt;
- Fixed problems with &lt;a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;cuthill_mckee_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and
- &lt;a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"&gt;&lt;code&gt;&lt;span class="identifier"&gt;king_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; producing no
+ minor changes. Refer to the library <a href="/doc/libs/1_33_1/libs/multi_index/doc/release_notes.html#boost_1_33_1">release
+ notes</a> for further details.
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/graph/doc/table_of_contents.html">Graph
+ Library</a>:</span>
+ <ul>
+ <li>
+ Fixed a problem with the relaxed heap on x86 Linux (fixes bug in <code><span class="identifier">dijkstra_shortest_paths</span></code>).
+ </li>
+ <li>
+ Fixed problems with <a href="/doc/libs/1_33_1/libs/graph/doc/cuthill_mckee_ordering.html"><code><span class="identifier">cuthill_mckee_ordering</span></code></a> and
+ <a href="/doc/libs/1_33_1/libs/graph/doc/king_ordering.html"><code><span class="identifier">king_ordering</span></code></a> producing no
results.
- &lt;/li&gt;
- &lt;li&gt;
- Added &lt;code&gt;&lt;span class="identifier"&gt;color_map&lt;/span&gt;&lt;/code&gt; parameter
- to &lt;code&gt;&lt;span class="identifier"&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/signals/doc/index.html"&gt;Signals
- Library&lt;/a&gt;:&lt;/span&gt; Fixed problems with the use of Signals across shared library
+ </li>
+ <li>
+ Added <code><span class="identifier">color_map</span></code> parameter
+ to <code><span class="identifier">dijkstra_shortest_paths</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/signals/doc/index.html">Signals
+ Library</a>:</span> Fixed problems with the use of Signals across shared library
boundaries.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/thread/doc/index.html"&gt;Thread library&lt;/a&gt;:&lt;/span&gt;
- &lt;code&gt;&lt;span class="identifier"&gt;read_write_mutex&lt;/span&gt;&lt;/code&gt; has been removed due to
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/thread/doc/index.html">Thread library</a>:</span>
+ <code><span class="identifier">read_write_mutex</span></code> has been removed due to
problems with deadlocks.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;span class="library"&gt;&lt;a href="/doc/libs/1_33_1/libs/wave/index.html"&gt;Wave library&lt;/a&gt;
- (V1.2.1):&lt;/span&gt; Fixed a couple of problems, refer to the &lt;a href="/doc/libs/1_33_1/libs/wave/ChangeLog"&gt;change
- log&lt;/a&gt; for further details.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_1.supported_compilers"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
+ </li>
+ <li>
+ <span class="library"><a href="/doc/libs/1_33_1/libs/wave/index.html">Wave library</a>
+ (V1.2.1):</span> Fixed a couple of problems, refer to the <a href="/doc/libs/1_33_1/libs/wave/ChangeLog">change
+ log</a> for further details.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_1.supported_compilers">
+ <h3><span class="link">Supported Compilers</span></h3>
+ <p>
Boost is tested on a wide range of compilers and platforms. Since Boost libraries
rely on modern C++ features not available in all compilers, not all Boost libraries
will work with every compiler. The following compilers and platforms have been
extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the &lt;a href="http://www.boost.org/regression/release/user/"&gt;regression
- test results&lt;/a&gt;.
- &lt;/p&gt;
- &lt;p&gt;
- &lt;em&gt;New for this release&lt;/em&gt;: Support for building
+ will work as well. For more information, see the <a href="http://www.boost.org/regression/release/user/">regression
+ test results</a>.
+ </p>
+ <p>
+ <em>New for this release</em>: Support for building
with the newest STLport-5.0 was added. The support includes building with MinGW
Runtime 3.8 plus STLport-5.0 improved to support wide character operations.
Apple GCC 4.0, HP Tru64 C++, and Microsoft Visual C++ 8.0 are supported platforms.
- We have added an experimental autoconf-like &lt;tt&gt;configure&lt;/tt&gt; script
- for Unix-like systems: run &lt;tt&gt;configure --help&lt;/tt&gt; for more information.
- &lt;/p&gt;
- &lt;ul&gt;
- &lt;li&gt;
- &lt;a href="http://developer.apple.com/"&gt;Apple GCC&lt;/a&gt; 3.3, 4.0 on Mac
+ We have added an experimental autoconf-like <tt>configure</tt> script
+ for Unix-like systems: run <tt>configure --help</tt> for more information.
+ </p>
+ <ul>
+ <li>
+ <a href="http://developer.apple.com/">Apple GCC</a> 3.3, 4.0 on Mac
OS X.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.codegear.com/products/cppbuilder"&gt;Borland C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
5.6.4 on Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://gcc.gnu.org"&gt;GNU C++&lt;/a&gt; 2.95.3 (with and without
+ </li>
+ <li>
+ <a href="http://gcc.gnu.org">GNU C++</a> 2.95.3 (with and without
STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://h30097.www3.hp.com/cplus/"&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm"&gt;Intel
- C++&lt;/a&gt; 8.1, 9.0 on Windows, Linux.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://www.metrowerks.com"&gt;Metrowerks CodeWarrior&lt;/a&gt; 8.3,
+ </li>
+ <li>
+ <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+ </li>
+ <li>
+ <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+ C++</a> 8.1, 9.0 on Windows, Linux.
+ </li>
+ <li>
+ <a href="http://www.metrowerks.com">Metrowerks CodeWarrior</a> 8.3,
9.4, 9.5 on Mac OS X and Windows.
- &lt;/li&gt;
- &lt;li&gt;
- &lt;a href="http://msdn.microsoft.com/visualc/"&gt;Microsoft Visual C++&lt;/a&gt;
+ </li>
+ <li>
+ <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
C++ 8.0, which may result in many spurious warnings from Boost headers and
other standards-conforming C++ code. To suppress these warnings, define the
- macro &lt;code&gt;&lt;span class="identifier"&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
- &lt;/li&gt;
- &lt;/ul&gt;
- &lt;/div&gt;
- &lt;div id="version_1_33_1.acknowledgements"&gt;
- &lt;h3&gt;&lt;span class="link"&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
- &lt;p&gt;
- &lt;span class="inset-left"&gt;&lt;img alt="Medieval Mr. Gregor" src="/gfx/boost_1_33_0.jpg"/&gt;&lt;/span&gt;
-&lt;a href="/users/people/doug_gregor.html"&gt;Douglas
- Gregor&lt;/a&gt; managed this release.
- &lt;/p&gt;
- &lt;p&gt;
+ macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_33_1.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <span class="inset-left"><img alt="Medieval Mr. Gregor" src="/gfx/boost_1_33_0.jpg"/></span>
+<a href="/users/people/doug_gregor.html">Douglas
+ Gregor</a> managed this release.
+ </p>
+ <p>
A great number of people contributed their time and expertise to make this
release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
managed to keep the regression testing system working throughout the release
process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek Kozicki, Rene
Rivera and Jonathan Turkanis for greatly improving the quality of this release;
- Rene Rivera for the new Boost web page design; and Zoltan &amp;quot;cad&amp;quot; Juhasz
+ Rene Rivera for the new Boost web page design; and Zoltan &quot;cad&quot; Juhasz
for the new Boost logo.
- &lt;/p&gt;
- &lt;/div&gt;
-&lt;/div&gt;</description></item></channel>
+ </p>
+ </div>
+</div></description></item></channel>
</rss>
\ No newline at end of file
==============================================================================
--- website/public_html/beta/index.php (original)
+++ website/public_html/beta/index.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -13,7 +13,7 @@
"HTML Tidy for Windows (vers 1st November 2003), see www.w3.org" />
<title>Boost C++ Libraries</title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-welcome.css" />
<!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
==============================================================================
--- website/public_html/beta/users/download/entry.php (original)
+++ website/public_html/beta/users/download/entry.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -9,7 +9,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title><?php print $_downloads->db[$_guid]['title']; ?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
==============================================================================
--- website/public_html/beta/users/download/index.php (original)
+++ website/public_html/beta/users/download/index.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -8,7 +8,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Boost Downloads</title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
==============================================================================
--- website/public_html/beta/users/history/entry.php (original)
+++ website/public_html/beta/users/history/entry.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -9,7 +9,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title><?php print $_history->db[$_guid]['title']; ?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<style type="text/css">
==============================================================================
--- website/public_html/beta/users/history/index.php (original)
+++ website/public_html/beta/users/history/index.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -9,7 +9,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Boost Version History</title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
==============================================================================
--- website/public_html/beta/users/news/entry.php (original)
+++ website/public_html/beta/users/news/entry.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -9,7 +9,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title><?php print $_news->db[$_guid]['title']; ?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<style type="text/css">
==============================================================================
--- website/public_html/beta/users/news/index.php (original)
+++ website/public_html/beta/users/news/index.php 2008-03-16 15:35:02 EDT (Sun, 16 Mar 2008)
@@ -9,7 +9,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Boost News</title>
- <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="/favicon.ico" type="image/ico" />
<link rel="stylesheet" type="text/css" href="/style/section-boost.css" />
<!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->