mirror of
https://github.com/boostorg/lambda.git
synced 2026-02-01 20:42:17 +00:00
Compare commits
7 Commits
svn-branch
...
boost-1.34
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
843be5d1e7 | ||
|
|
b112fb9254 | ||
|
|
13ec0c5bbc | ||
|
|
29ab5a2814 | ||
|
|
a0cfe43611 | ||
|
|
fe858cf734 | ||
|
|
b3120233dc |
@@ -3,6 +3,10 @@
|
|||||||
<meta http-equiv="refresh" content="0; URL=../../../doc/html/lambda.html">
|
<meta http-equiv="refresh" content="0; URL=../../../doc/html/lambda.html">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
Automatic redirection failed, please go to <a href="../../../doc/html/lambda.html">www.boost.org/doc/html/lambda.html</a>
|
Automatic redirection failed, please go to <a href="../../../doc/html/lambda.html">www.boost.org/doc/html/lambda.html</a> <hr>
|
||||||
|
<p>© Copyright Beman Dawes, 2001</p>
|
||||||
|
<p>Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||||
|
file <a href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy
|
||||||
|
at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -2640,6 +2640,7 @@ which require that the argument types are references.
|
|||||||
<row><entry><literal><![CDATA[&]]></literal></entry><entry><literal><![CDATA[other_action<address_of_action>]]></literal></entry></row>
|
<row><entry><literal><![CDATA[&]]></literal></entry><entry><literal><![CDATA[other_action<address_of_action>]]></literal></entry></row>
|
||||||
<row><entry><literal><![CDATA[*]]></literal></entry><entry><literal><![CDATA[other_action<contents_of_action>]]></literal></entry></row>
|
<row><entry><literal><![CDATA[*]]></literal></entry><entry><literal><![CDATA[other_action<contents_of_action>]]></literal></entry></row>
|
||||||
<row><entry><literal><![CDATA[,]]></literal></entry><entry><literal><![CDATA[other_action<comma_action>]]></literal></entry></row>
|
<row><entry><literal><![CDATA[,]]></literal></entry><entry><literal><![CDATA[other_action<comma_action>]]></literal></entry></row>
|
||||||
|
<row><entry><literal><![CDATA[->*]]></literal></entry><entry><literal><![CDATA[other_action<member_pointer_action>]]></literal></entry></row>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
|
|||||||
@@ -859,7 +859,7 @@ struct return_type_2<other_action<subscript_action>, A, B> {
|
|||||||
|
|
||||||
|
|
||||||
// Forward declarations are incompatible with the libstdc++ debug mode.
|
// Forward declarations are incompatible with the libstdc++ debug mode.
|
||||||
#if BOOST_WORKAROUND(__GNUC__, >= 3) && _GLIBCXX_DEBUG
|
#if BOOST_WORKAROUND(__GNUC__, >= 3) && defined(_GLIBCXX_DEBUG)
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|||||||
@@ -3,6 +3,10 @@
|
|||||||
<meta http-equiv="refresh" content="0; URL=../../doc/html/lambda.html">
|
<meta http-equiv="refresh" content="0; URL=../../doc/html/lambda.html">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
Automatic redirection failed, please go to <a href="../../doc/html/lambda.html">www.boost.org/doc/html/lambda.html</a>
|
Automatic redirection failed, please go to <a href="../../doc/html/lambda.html">www.boost.org/doc/html/lambda.html</a> <hr>
|
||||||
|
<p>© Copyright Beman Dawes, 2001</p>
|
||||||
|
<p>Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||||
|
file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy
|
||||||
|
at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
59
test/Jamfile
59
test/Jamfile
@@ -1,59 +0,0 @@
|
|||||||
# Lambda library
|
|
||||||
|
|
||||||
# Copyright (C) 2001-2003 Jaakko Järvi
|
|
||||||
|
|
||||||
# Use, modification and distribution is subject to the Boost Software License,
|
|
||||||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
||||||
# http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
|
|
||||||
# For more information, see http://www.boost.org/
|
|
||||||
|
|
||||||
|
|
||||||
subproject libs/lambda/test ;
|
|
||||||
|
|
||||||
# bring in rules for testing
|
|
||||||
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
|
||||||
include testing.jam ;
|
|
||||||
|
|
||||||
# Make tests run by default.
|
|
||||||
DEPENDS all : test ;
|
|
||||||
|
|
||||||
{
|
|
||||||
# look in BOOST_ROOT for sources first, just in this Jamfile
|
|
||||||
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
|
|
||||||
|
|
||||||
test-suite lambda
|
|
||||||
:
|
|
||||||
[ run libs/lambda/test/algorithm_test.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/bind_tests_simple.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/bind_tests_advanced.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/bind_tests_simple_f_refs.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/bll_and_function.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/cast_test.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/constructor_tests.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/control_structures.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/exception_test.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/extending_rt_traits.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/is_instance_of_test.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/member_pointer_test.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/operator_tests_simple.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/phoenix_control_structures.cpp : : : : ]
|
|
||||||
|
|
||||||
[ run libs/lambda/test/switch_construct.cpp : : : : ]
|
|
||||||
;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user