mirror of
https://github.com/boostorg/boost.git
synced 2025-04-06 14:05:01 +00:00
Merged ScopeExit (improved), LocalFunction (new), Functional/OverloadedFunction (new), and Utility/IdentityType (new) from trunk into release branch.
[SVN r78564]
This commit is contained in:
parent
252ebfb227
commit
8dc8199e87
9 changed files with 50 additions and 46 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -410,6 +410,10 @@
|
|||
path = libs/container
|
||||
url = ../container.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
[submodule "local_function"]
|
||||
path = libs/local_function
|
||||
url = ../local_function.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
[submodule "context"]
|
||||
path = libs/context
|
||||
url = ../context.git
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 1ad77fa8bab8d4c546817f22c718571f6edb5660
|
||||
Subproject commit 681b79aaf99d17d3f4cb11e118890bd297441b98
|
|
@ -148,6 +148,8 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="functional/hash/index.html">functional/hash</a> -
|
||||
A TR1 hash function object that can be extended to hash user defined
|
||||
types, from Daniel James.</li>
|
||||
<li><a href="functional/overloaded_function/index.html">functional/overloaded_function</a> -
|
||||
Overload different functions into a single function object, from Lorenzo Caminiti.</li>
|
||||
<li><a href="fusion/index.html">fusion</a> -
|
||||
Library for working with tuples, including various containers, algorithms, etc.
|
||||
From Joel de Guzman, Dan Marsden and Tobias Schwinger.</li>
|
||||
|
@ -163,6 +165,8 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="icl/index.html">icl</a> -
|
||||
Interval Container Library, interval sets and maps and aggregation
|
||||
of associated values, from Joachim Faulhaber.</li>
|
||||
<li><a href="utility/identity_type/index.html">identity_type</a> -
|
||||
Wrap types within round parenthesis so they can always be passed as macro parameters, from Lorenzo Caminiti.</li>
|
||||
<li><a href="integer/index.html">integer</a> - Headers to ease
|
||||
dealing with integral types.</li>
|
||||
<li><a href="interprocess/index.html">interprocess</a> - Shared memory, memory mapped files,
|
||||
|
@ -181,6 +185,8 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="lambda/index.html">lambda</a> - Define small unnamed
|
||||
function objects at the actual call site, and more, from Jaakko Järvi and
|
||||
Gary Powell.</li>
|
||||
<li><a href="local_function/index.html">local_function</a> -
|
||||
Program functions locally, within other functions, directly within the scope where they are needed, from Lorenzo Caminiti.</li>
|
||||
<li><a href="locale/index.html">locale</a> - Provide localization and Unicode
|
||||
handling tools for C++, from Artyom Beilis</li>
|
||||
<li><a href="conversion/lexical_cast.htm">lexical_cast</a> - General literal text conversions, such as an <code>int</code> represented as
|
||||
|
@ -271,8 +277,8 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="regex/index.html">regex</a> - Regular expression
|
||||
library, from John Maddock.</li>
|
||||
<li><a href="utility/utility.htm#result_of">result_of</a> - determines the type of a function call expression.</li>
|
||||
<li><a href="scope_exit/doc/html/index.html">scope_exit</a>
|
||||
- Execute arbitrary code at scope exit, from Alexander Nasonov.</li>
|
||||
<li><a href="scope_exit/index.html">scope_exit</a> -
|
||||
Execute arbitrary code at scope exit, from Alexander Nasonov and Lorenzo Caminiti.</li>
|
||||
<li><a href="serialization/doc/index.html">serialization</a>
|
||||
- Serialization for persistence and marshalling, from Robert Ramey</li>
|
||||
<li><a href="signals/index.html">signals</a> - managed signals &
|
||||
|
@ -514,9 +520,13 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="functional/hash/index.html">functional/hash</a> -
|
||||
A TR1 hash function object that can be extended to hash user defined
|
||||
types, from Daniel James.</li>
|
||||
<li><a href="functional/overloaded_function/index.html">functional/overloaded_function</a> -
|
||||
Overload different functions into a single function object, from Lorenzo Caminiti.</li>
|
||||
<li><a href="lambda/index.html">lambda</a> - Define small unnamed
|
||||
function objects at the actual call site, and more, from Jaakko Järvi and
|
||||
Gary Powell.</li>
|
||||
<li><a href="local_function/index.html">local_function</a> -
|
||||
Program functions locally, within other functions, directly within the scope where they are needed, from Lorenzo Caminiti.</li>
|
||||
<li><a href="phoenix/index.html">Phoenix</a> - Define small unnamed
|
||||
function objects at the actual call site, and more, from Joel de Guzman, Dan
|
||||
Marsden and Thomas Heller</li>
|
||||
|
@ -630,8 +640,8 @@ of arbitrary data for persistence and marshalling, from Robert Ramey</li>
|
|||
"parameter/doc/html/index.html">parameter</a></span> -
|
||||
Write functions that accept arguments by name, by David Abrahams
|
||||
and Daniel Wallin.</li>
|
||||
<li><a href="scope_exit/doc/html/index.html">scope_exit</a>
|
||||
- Execute arbitrary code at scope exit, from Alexander Nasonov.</li>
|
||||
<li><a href="scope_exit/index.html">scope_exit</a> -
|
||||
Execute arbitrary code at scope exit, from Alexander Nasonov and Lorenzo Caminiti.</li>
|
||||
<li><a href="typeof/index.html">typeof</a> -
|
||||
Typeof operator emulation, from Arkadiy Vertleyb and Peder Holt.</li>
|
||||
</ul>
|
||||
|
@ -754,6 +764,8 @@ of arbitrary data for persistence and marshalling, from Robert Ramey</li>
|
|||
<h3><a name="Preprocessor">Preprocessor</a> Metaprogramming</h3>
|
||||
|
||||
<ul>
|
||||
<li><a href="utility/identity_type/index.html">identity_type</a> -
|
||||
Wrap types within round parenthesis so they can always be passed as macro parameters, from Lorenzo Caminiti.</li>
|
||||
<li><a href="preprocessor/doc/index.html">preprocessor</a> - Preprocessor
|
||||
metaprogramming tools including repetition and recursion, from Vesa Karvonen
|
||||
and Paul Mensonides.</li>
|
||||
|
|
1
libs/local_function
Submodule
1
libs/local_function
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 290103d629af3dedc19fabc234b4bf829fa6b746
|
|
@ -39,6 +39,7 @@ functional
|
|||
functional/factory Tobias Schwinger <tschwinger -at- isonews2.com>
|
||||
functional/forward Tobias Schwinger <tschwinger -at- isonews2.com>
|
||||
functional/hash Daniel James <dnljms -at- gmail.com>
|
||||
functional/overloaded_function Lorenzo Caminiti <lorcaminiti -at- gmail.com>
|
||||
fusion Joel de Guzman <joel -at- boost-consulting.com>, Dan Marsden <danmarsden -at- yahoo.co.uk>, Tobias Schwinger <tschwinger -at- isonews2.com>
|
||||
function_types Tobias Schwinger <tschwinger -at- isonews2.com>
|
||||
geometry Barend Gehrels<barend -at- xs4all.nl>, Bruno Lalande <bruno.lalande -at- gmail.com>, Mateusz Loskot <mateusz -at- loskot.net>
|
||||
|
@ -53,6 +54,7 @@ io Daryle Walker <darylew -at- hotmail.com>
|
|||
iostreams Jonathan Turkanis <turkanis -at- coderage.com>
|
||||
iterator David Abrahams <dave -at- boost-consulting.com>, Thomas Witt <witt - at - acm.org>
|
||||
lambda Jaakko Jarvi <jarvi -at- cs.tamu.edu>
|
||||
local_function Lorenzo Caminiti <lorcaminiti -at- gmail.com>
|
||||
locale Artyom Beilis <artyomtnk -at- yahoo.com>
|
||||
logic Douglas Gregor <dgregor -at- cs.indiana.edu>
|
||||
math Hubert Holin <Hubert.Holin -at- meteo.fr>, John Maddock <john -at- johnmaddock.co.uk>
|
||||
|
@ -82,7 +84,7 @@ range Neil Groves <neilgroves -at- googlemail.com>
|
|||
ratio Vicente J. Botet Escriba <vicente.botet -at- wanadoo.fr>
|
||||
rational Jonathan Turkanis <turkanis -at- coderage.com>
|
||||
regex John Maddock <john -at- johnmaddock.co.uk>
|
||||
scope_exit Alexander Nasonov <alexander.nasonov -at- gmail.com>
|
||||
scope_exit Alexander Nasonov <alexander.nasonov -at- gmail.com>, Lorenzo Caminiti <lorcaminiti -at- gmail.com>
|
||||
serialization Robert Ramey <ramey -at- rrsd.com>
|
||||
signals Douglas Gregor <dgregor -at- cs.indiana.edu>
|
||||
signals2 Frank Mori Hess <fmhess -at- users.sourceforge.net>
|
||||
|
@ -101,8 +103,9 @@ typeof Arkadiy Vertleyb <vertleyb -at- hotmail.com>, Peder Holt <
|
|||
units Matthias Schabel <boost -at- schabel-family.org>, Steven Watanabe <steven -at- providere-consulting.com>
|
||||
unordered Daniel James <dnljms -at- gmail.com>
|
||||
utility
|
||||
utility/result_of Daniel Walker <daniel.j.walker -at- gmail.com>
|
||||
utility/enable_if Jaakko Jarvi <jarvi -at- cs.tamu.edu>, Jeremiah Willcock <jewillco -at- osl.iu.edu>
|
||||
utility/identity_type Lorenzo Caminiti <lorcaminiti -at- gmail.com>
|
||||
utility/result_of Daniel Walker <daniel.j.walker -at- gmail.com>
|
||||
utility/swap Joseph Gauterin <joseph.gauterin -at- googlemail.com>
|
||||
uuid Andy Tompkins <atompkins -at- fastmail.fm>
|
||||
variant Eric Friedman <ericbrandon -at- gmail.com>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit fab7538f6c065f234011adedd7efb9195234c677
|
||||
Subproject commit 2a96d2234d6d7917278bb39196df93424b1739a4
|
|
@ -1 +1 @@
|
|||
Subproject commit 7aa68731b4c4e872eb28b145db6d6b6ccd4bf916
|
||||
Subproject commit 6b9f0103d50b47eebafbf7f77a84267e37a3efbe
|
|
@ -78,6 +78,7 @@ run-tests libs :
|
|||
functional/factory/test # test-suite functional/factory
|
||||
functional/forward/test # test-suite functional/forward
|
||||
functional/hash/test # test-suite functional/hash
|
||||
functional/overloaded_function/test # test-suite func./overloaded_function
|
||||
function_types/test # test-suite function_types
|
||||
fusion/test # test-suite fusion
|
||||
geometry/test # test-suite geometry
|
||||
|
@ -95,6 +96,7 @@ run-tests libs :
|
|||
iostreams/test # test-suite iostreams
|
||||
iterator/test # test-suite iterator
|
||||
lambda/test # test-suite lambda
|
||||
local_function/test # test-suite local_function
|
||||
locale/test # test-suite locale
|
||||
logic/test # test-suite logic
|
||||
math/test # test-suite math
|
||||
|
@ -149,6 +151,7 @@ run-tests libs :
|
|||
unordered/test/unordered # test-suite unordered
|
||||
unordered/test/exception # test-suite unordered-exception
|
||||
utility/enable_if/test # test-suite utility/enable_if
|
||||
utility/identity_type/test # test-suite utility/identity_type
|
||||
utility/swap/test # test-suite utility/swap
|
||||
utility/test # test-suite utility
|
||||
uuid/test # test-suite uuid
|
||||
|
|
|
@ -1942,14 +1942,6 @@
|
|||
</mark-expected-failures>
|
||||
</library>
|
||||
|
||||
<!-- functional/overloaded_function -->
|
||||
<library name="functional/overloaded_function">
|
||||
<!-- Boost.Preprocessor (iteration?) error on Sun -->
|
||||
<mark-unusable>
|
||||
<toolset name="sun-5.10"/>
|
||||
</mark-unusable>
|
||||
</library>
|
||||
|
||||
<!-- fusion -->
|
||||
<library name="fusion">
|
||||
<mark-unusable>
|
||||
|
@ -2451,6 +2443,10 @@
|
|||
|
||||
<!-- local_function -->
|
||||
<library name="local_function">
|
||||
<mark-unusable>
|
||||
<!-- most Preprocessor tests also fail on this compiler -->
|
||||
<toolset name="cray-8.0"/>
|
||||
</mark-unusable>
|
||||
<!-- variadic macros required -->
|
||||
<mark-expected-failures>
|
||||
<test name="add"/>
|
||||
|
@ -2473,7 +2469,7 @@
|
|||
<test name="return_assign"/>
|
||||
<test name="return_derivative"/>
|
||||
<test name="return_inc"/>
|
||||
<test name="return_getset"/>
|
||||
<test name="return_setget"/>
|
||||
<test name="return_this"/>
|
||||
<test name="same_line"/>
|
||||
<test name="transform"/>
|
||||
|
@ -2491,9 +2487,15 @@
|
|||
<test name="add_classifiers"/>
|
||||
<test name="add_classifiers_seq"/>
|
||||
<test name="add_classifiers_seq_nova"/>
|
||||
<toolset name="clang-darwin-trunkLX"/>
|
||||
<toolset name="clang-darwin-trunkRX"/>
|
||||
<toolset name="darwin-4.4_0x"/>
|
||||
<toolset name="gcc-4.5.3_0x"/>
|
||||
<toolset name="gcc-4.4.4_0x"/>
|
||||
<toolset name="gcc-4.5.3_0x"/>
|
||||
<toolset name="gcc-4.6.2_0x"/>
|
||||
<toolset name="gcc-mingw-4.5.2_0x"/>
|
||||
<toolset name="msvc-10.0"/>
|
||||
<toolset name="msvc-11.0"/>
|
||||
<note author="Lorenzo Caminiti">
|
||||
This test does not allow C++11 auto-declaration support
|
||||
(beccause it uses the `auto` keyword as storage classifier).
|
||||
|
@ -4981,6 +4983,10 @@ for more information.
|
|||
|
||||
<!-- scope_exit -->
|
||||
<library name="scope_exit">
|
||||
<mark-unusable>
|
||||
<!-- most Preprocessor tests also fail on this compiler -->
|
||||
<toolset name="cray-8.0"/>
|
||||
</mark-unusable>
|
||||
<mark-expected-failures>
|
||||
<test name="emulation_tpl"/>
|
||||
<toolset name="intel-*-9.1"/>
|
||||
|
@ -5026,35 +5032,10 @@ for more information.
|
|||
<test name="native_this_tpl"/>
|
||||
<test name="native_tpl"/>
|
||||
<test name="native_tu_test"/>
|
||||
<test name="same_line_seq"/>
|
||||
<test name="same_line_seq_nova"/>
|
||||
<test name="world_checkpoint_seq"/>
|
||||
<test name="world_checkpoint_seq_nova"/>
|
||||
<test name="world_seq"/>
|
||||
<test name="world_seq_nova"/>
|
||||
<test name="world_this_seq"/>
|
||||
<test name="world_this_seq_nova"/>
|
||||
<test name="world_tpl_seq"/>
|
||||
<test name="world_tpl_seq_nova"/>
|
||||
<toolset name="sun-5.10"/>
|
||||
<note author="Lorenzo Caminiti">
|
||||
This compiler does not support native type-of and type-of
|
||||
emulation mode is not atuomatically detected for this compiler
|
||||
(force it by defining the BOOST_TYPEOF_EMULATION macro).
|
||||
</note>
|
||||
</mark-expected-failures>
|
||||
<!-- MSVC type-of emulation cannot capture `this` -->
|
||||
<mark-expected-failures>
|
||||
<test name="emulation_this"/>
|
||||
<test name="emulation_this_tpl"/>
|
||||
<toolset name="msvc-10.0"/>
|
||||
<toolset name="msvc-8.0"/>
|
||||
<toolset name="msvc-9.0"/>
|
||||
<toolset name="msvc-9.0~stlport5.2"/>
|
||||
<toolset name="msvc-9.0~wm5~stlport5.2"/>
|
||||
<note author="Lorenzo Caminiti">
|
||||
This compiler cannot capture the object `this` using type-of
|
||||
emulation mode (use native type-of instead).
|
||||
This compiler does not support native type-of (force type-of
|
||||
emulation mode defining the BOOST_TYPEOF_EMULATION macro).
|
||||
</note>
|
||||
</mark-expected-failures>
|
||||
<!-- variadic macros required -->
|
||||
|
|
Loading…
Add table
Reference in a new issue