From b3120233dc91b413a89862a484ce2ab12d4282af Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 21 Mar 2006 02:26:31 +0000 Subject: [PATCH 01/11] This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'. [SVN r33417] --- dummy | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 dummy diff --git a/dummy b/dummy deleted file mode 100644 index e69de29..0000000 From fe858cf73418349b6924b2859fa1e557c6e244c2 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 6 Nov 2006 17:10:46 +0000 Subject: [PATCH 02/11] Remove obsolete Boost.Build v1 files. [SVN r35880] --- test/Jamfile | 59 ---------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 test/Jamfile diff --git a/test/Jamfile b/test/Jamfile deleted file mode 100644 index cb8be67..0000000 --- a/test/Jamfile +++ /dev/null @@ -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 : : : : ] - ; - -} - \ No newline at end of file From a0cfe43611548ad6b23a1dbcfe3d7491641bfc5f Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 7 Nov 2006 19:27:00 +0000 Subject: [PATCH 03/11] Merged copyright and license addition [SVN r35907] --- doc/index.html | 6 +++++- index.html | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/index.html b/doc/index.html index c370e64..7b8ba3c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -3,6 +3,10 @@ -Automatic redirection failed, please go to www.boost.org/doc/html/lambda.html +Automatic redirection failed, please go to www.boost.org/doc/html/lambda.html 
+

© Copyright Beman Dawes, 2001

+

Distributed under the Boost Software License, Version 1.0. (See accompanying +file LICENSE_1_0.txt or copy +at www.boost.org/LICENSE_1_0.txt)

\ No newline at end of file diff --git a/index.html b/index.html index 1b5c06e..788ea5c 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,10 @@ -Automatic redirection failed, please go to www.boost.org/doc/html/lambda.html +Automatic redirection failed, please go to www.boost.org/doc/html/lambda.html 
+

© Copyright Beman Dawes, 2001

+

Distributed under the Boost Software License, Version 1.0. (See accompanying +file LICENSE_1_0.txt or copy +at www.boost.org/LICENSE_1_0.txt)

\ No newline at end of file From 29ab5a2814b4127a5bd7c78e62a5591a6e7b781b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Wed, 29 Nov 2006 19:21:46 +0000 Subject: [PATCH 04/11] fixed bug 1444052 [SVN r36200] --- include/boost/lambda/detail/operator_return_type_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/lambda/detail/operator_return_type_traits.hpp b/include/boost/lambda/detail/operator_return_type_traits.hpp index d5033e5..79b422e 100644 --- a/include/boost/lambda/detail/operator_return_type_traits.hpp +++ b/include/boost/lambda/detail/operator_return_type_traits.hpp @@ -859,7 +859,7 @@ struct return_type_2, A, B> { // 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 #include #include From 13ec0c5bbcdc65e1f4d7c263fc1ae28767309895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Wed, 29 Nov 2006 19:28:48 +0000 Subject: [PATCH 05/11] fixed omission [SVN r36201] --- doc/lambda.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/lambda.xml b/doc/lambda.xml index f933d7e..21ffcfa 100644 --- a/doc/lambda.xml +++ b/doc/lambda.xml @@ -2640,6 +2640,7 @@ which require that the argument types are references. ]]> ]]> ]]> +*]]>]]> From b112fb92540a08939af67a4f6560214a72ce918b Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 7 Jan 2007 22:42:25 +0000 Subject: [PATCH 06/11] Fix a link. [SVN r36651] --- doc/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/index.html b/doc/index.html index 7b8ba3c..59f1bfc 100644 --- a/doc/index.html +++ b/doc/index.html @@ -6,7 +6,7 @@ Automatic redirection failed, please go to www.boost.org/doc/html/lambda.html 

© Copyright Beman Dawes, 2001

Distributed under the Boost Software License, Version 1.0. (See accompanying -file LICENSE_1_0.txt or copy +file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)

- \ No newline at end of file + From 87dd3997e72f9f4b10727db1ff981f105823b4ea Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 24 Jul 2007 19:28:14 +0000 Subject: [PATCH 07/11] This commit was manufactured by cvs2svn to create tag 'Version_1_34_1'. [SVN r38286] From 672c8e10d4cb64bc6eea7ba868157667197bc2b7 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 5 Oct 2007 14:25:06 +0000 Subject: [PATCH 08/11] Starting point for releases [SVN r39706] From a0cd34c9388616fc5a54a6c099c42e7ffb2683bb Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sun, 25 Nov 2007 18:07:19 +0000 Subject: [PATCH 09/11] Full merge from trunk at revision 41356 of entire boost-root tree. [SVN r41369] --- .../boost/lambda/detail/lambda_functors.hpp | 67 ++++++++++++++++++- 1 file changed, 65 insertions(+), 2 deletions(-) diff --git a/include/boost/lambda/detail/lambda_functors.hpp b/include/boost/lambda/detail/lambda_functors.hpp index bab2ed6..5f04297 100644 --- a/include/boost/lambda/detail/lambda_functors.hpp +++ b/include/boost/lambda/detail/lambda_functors.hpp @@ -148,6 +148,14 @@ public: >(a, cnull_type(), cnull_type(), cnull_type()); } + template + typename inherited::template sig >::type + operator()(A const& a) const { + return inherited::template call< + typename inherited::template sig >::type + >(a, cnull_type(), cnull_type(), cnull_type()); + } + template typename inherited::template sig >::type operator()(A& a, B& b) const { @@ -156,6 +164,30 @@ public: >(a, b, cnull_type(), cnull_type()); } + template + typename inherited::template sig >::type + operator()(A const& a, B& b) const { + return inherited::template call< + typename inherited::template sig >::type + >(a, b, cnull_type(), cnull_type()); + } + + template + typename inherited::template sig >::type + operator()(A& a, B const& b) const { + return inherited::template call< + typename inherited::template sig >::type + >(a, b, cnull_type(), cnull_type()); + } + + template + typename inherited::template sig >::type + operator()(A const& a, B const& b) const { + return inherited::template call< + typename inherited::template sig >::type + >(a, b, cnull_type(), cnull_type()); + } + template typename inherited::template sig >::type operator()(A& a, B& b, C& c) const @@ -165,6 +197,15 @@ public: >(a, b, c, cnull_type()); } + template + typename inherited::template sig >::type + operator()(A const& a, B const& b, C const& c) const + { + return inherited::template call< + typename inherited::template sig >::type + >(a, b, c, cnull_type()); + } + // for internal calls with env template typename inherited::template sig >::type @@ -207,6 +248,28 @@ public: } // namespace lambda } // namespace boost +// is_placeholder + +#include + +namespace boost +{ + +template<> struct is_placeholder< lambda::lambda_functor< lambda::placeholder > > +{ + enum _vt { value = 1 }; +}; + +template<> struct is_placeholder< lambda::lambda_functor< lambda::placeholder > > +{ + enum _vt { value = 2 }; +}; + +template<> struct is_placeholder< lambda::lambda_functor< lambda::placeholder > > +{ + enum _vt { value = 3 }; +}; + +} // namespace boost + #endif - - From e67976c740276f8c0964a015974544ca94a2f00d Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sun, 25 Nov 2007 18:38:02 +0000 Subject: [PATCH 10/11] Full merge from trunk at revision 41356 of entire boost-root tree. [SVN r41370] --- doc/detail/lambda_doc.xml | 4 +-- test/Jamfile | 33 +++++++++++++++++++++++ test/istreambuf_test.cpp | 30 +++++++++++++++++++++ test/rvalue_test.cpp | 57 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 122 insertions(+), 2 deletions(-) create mode 100644 test/Jamfile create mode 100644 test/istreambuf_test.cpp create mode 100644 test/rvalue_test.cpp diff --git a/doc/detail/lambda_doc.xml b/doc/detail/lambda_doc.xml index c43fb2e..968ce5a 100755 --- a/doc/detail/lambda_doc.xml +++ b/doc/detail/lambda_doc.xml @@ -163,8 +163,8 @@ The STL contains predefined function objects for some common cases (such as plus template is: - : public binary_function -struct plus { + +struct plus : public binary_function { T operator()(const T& i, const T& j) const { return i + j; } diff --git a/test/Jamfile b/test/Jamfile new file mode 100644 index 0000000..8b911e2 --- /dev/null +++ b/test/Jamfile @@ -0,0 +1,33 @@ +# 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/ + +import testing ; + +project + : requirements /boost/test//boost_test_exec_monitor + ; + +test-suite lambda + : [ run algorithm_test.cpp ] + [ run bind_tests_simple.cpp ] + [ run bind_tests_advanced.cpp ] + [ run bind_tests_simple_f_refs.cpp ] + [ run bll_and_function.cpp ] + [ run cast_test.cpp : : : : lambda_cast_test ] + [ run constructor_tests.cpp ] + [ run control_structures.cpp ] + [ run exception_test.cpp ] + [ run extending_rt_traits.cpp ] + [ run is_instance_of_test.cpp ] + [ run member_pointer_test.cpp ] + [ run operator_tests_simple.cpp ] + [ run phoenix_control_structures.cpp ] + [ run switch_construct.cpp ] + ; diff --git a/test/istreambuf_test.cpp b/test/istreambuf_test.cpp new file mode 100644 index 0000000..6db0842 --- /dev/null +++ b/test/istreambuf_test.cpp @@ -0,0 +1,30 @@ +// istreambuf_test - test lambda function objects with istreambuf_iterator +// +// Copyright (c) 2007 Peter Dimov +// +// Distributed under 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 + +#include +#include +#include +#include +#include + +int main() +{ + using namespace boost::lambda; + + std::stringstream is( "ax2" ); + + std::istreambuf_iterator b2( is ); + std::istreambuf_iterator e2; + + std::istreambuf_iterator i = std::find_if( b2, e2, _1 == 'x' ); + + BOOST_TEST( *i == 'x' ); + BOOST_TEST( std::distance( i, e2 ) == 2 ); + + return boost::report_errors(); +} diff --git a/test/rvalue_test.cpp b/test/rvalue_test.cpp new file mode 100644 index 0000000..3735185 --- /dev/null +++ b/test/rvalue_test.cpp @@ -0,0 +1,57 @@ +// rvalue_test - test lambda function objects with rvalue arguments +// +// Copyright (c) 2007 Peter Dimov +// +// Distributed under 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 + +#include +#include + +int main() +{ + using namespace boost::lambda; + + int x = 0; + int const y = 1; + int const z = 2; + + BOOST_TEST( _1( x ) == 0 ); + BOOST_TEST( _1( y ) == 1 ); + BOOST_TEST( _1( 2 ) == 2 ); + + BOOST_TEST( _2( x, x ) == 0 ); + BOOST_TEST( _2( x, y ) == 1 ); + BOOST_TEST( _2( x, 2 ) == 2 ); + + BOOST_TEST( _2( 4, x ) == 0 ); + BOOST_TEST( _2( 4, y ) == 1 ); + BOOST_TEST( _2( 4, 2 ) == 2 ); + + (_1 = _2)( x, y ); + BOOST_TEST( x == y ); + + (_1 = _2)( x, 3 ); + BOOST_TEST( x == 3 ); + + (_2 = _1)( z, x ); + BOOST_TEST( x == z ); + + (_2 = _1)( 4, x ); + BOOST_TEST( x == 4 ); + + BOOST_TEST( _3( x, x, x ) == x ); + BOOST_TEST( _3( x, x, y ) == y ); + BOOST_TEST( _3( x, x, 2 ) == 2 ); + + BOOST_TEST( _3( x, 5, x ) == x ); + BOOST_TEST( _3( x, 5, y ) == y ); + BOOST_TEST( _3( x, 5, 2 ) == 2 ); + + BOOST_TEST( _3( 9, 5, x ) == x ); + BOOST_TEST( _3( 9, 5, y ) == y ); + BOOST_TEST( _3( 9, 5, 2 ) == 2 ); + + return boost::report_errors(); +} From 4a254c4161d76cb63d013eb9dae9b58f6b1a5f8c Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sat, 28 Jun 2008 13:57:20 +0000 Subject: [PATCH 11/11] =?UTF-8?q?With=20his=20kind=20permission,=20change?= =?UTF-8?q?=20Jaakko=20"J=C3=A4rvi"=20to=20"Jarvi"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [SVN r46809] --- include/boost/lambda/algorithm.hpp | 2 +- include/boost/lambda/bind.hpp | 2 +- include/boost/lambda/casts.hpp | 2 +- include/boost/lambda/construct.hpp | 2 +- include/boost/lambda/control_structures.hpp | 2 +- include/boost/lambda/core.hpp | 2 +- include/boost/lambda/detail/actions.hpp | 2 +- include/boost/lambda/detail/arity_code.hpp | 2 +- include/boost/lambda/detail/bind_functions.hpp | 2 +- include/boost/lambda/detail/control_constructs_common.hpp | 2 +- include/boost/lambda/detail/control_structures_impl.hpp | 2 +- include/boost/lambda/detail/function_adaptors.hpp | 2 +- include/boost/lambda/detail/is_instance_of.hpp | 2 +- include/boost/lambda/detail/lambda_config.hpp | 2 +- include/boost/lambda/detail/lambda_functor_base.hpp | 2 +- include/boost/lambda/detail/lambda_functors.hpp | 2 +- include/boost/lambda/detail/lambda_fwd.hpp | 2 +- include/boost/lambda/detail/lambda_traits.hpp | 2 +- include/boost/lambda/detail/member_ptr.hpp | 2 +- include/boost/lambda/detail/operator_actions.hpp | 2 +- include/boost/lambda/detail/operator_lambda_func_base.hpp | 2 +- include/boost/lambda/detail/operator_return_type_traits.hpp | 2 +- include/boost/lambda/detail/operators.hpp | 2 +- include/boost/lambda/detail/ret.hpp | 2 +- include/boost/lambda/detail/return_type_traits.hpp | 2 +- include/boost/lambda/detail/select_functions.hpp | 2 +- include/boost/lambda/exceptions.hpp | 2 +- include/boost/lambda/if.hpp | 2 +- include/boost/lambda/lambda.hpp | 2 +- include/boost/lambda/loops.hpp | 2 +- include/boost/lambda/numeric.hpp | 2 +- include/boost/lambda/switch.hpp | 2 +- test/algorithm_test.cpp | 2 +- test/bind_tests_advanced.cpp | 2 +- test/bind_tests_simple.cpp | 2 +- test/bind_tests_simple_f_refs.cpp | 2 +- test/bll_and_function.cpp | 2 +- test/cast_test.cpp | 2 +- test/constructor_tests.cpp | 2 +- test/control_structures.cpp | 2 +- test/exception_test.cpp | 2 +- test/extending_rt_traits.cpp | 2 +- test/is_instance_of_test.cpp | 2 +- test/member_pointer_test.cpp | 2 +- test/operator_tests_simple.cpp | 2 +- test/phoenix_control_structures.cpp | 2 +- test/switch_construct.cpp | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/include/boost/lambda/algorithm.hpp b/include/boost/lambda/algorithm.hpp index 122942b..ced5f4e 100644 --- a/include/boost/lambda/algorithm.hpp +++ b/include/boost/lambda/algorithm.hpp @@ -1,5 +1,5 @@ // -- algorithm.hpp -- Boost Lambda Library ----------------------------------- -// Copyright (C) 2002 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2002 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2002 Gary Powell (gwpowell@hotmail.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/bind.hpp b/include/boost/lambda/bind.hpp index 68da0b6..0371393 100644 --- a/include/boost/lambda/bind.hpp +++ b/include/boost/lambda/bind.hpp @@ -1,6 +1,6 @@ // -- bind.hpp -- Boost Lambda Library -------------------------------------- -// Copyright (C) 1999-2001 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999-2001 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Gary Powell (gwpowell@hotmail.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/casts.hpp b/include/boost/lambda/casts.hpp index cf4701c..a5f6856 100644 --- a/include/boost/lambda/casts.hpp +++ b/include/boost/lambda/casts.hpp @@ -1,7 +1,7 @@ // - casts.hpp -- BLambda Library ------------- // // Copyright (C) 2000 Gary Powell (powellg@amazon.com) -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/construct.hpp b/include/boost/lambda/construct.hpp index b5d5993..f6e5e05 100644 --- a/include/boost/lambda/construct.hpp +++ b/include/boost/lambda/construct.hpp @@ -1,7 +1,7 @@ // - construct.hpp -- Lambda Library ------------- // // Copyright (C) 2000 Gary Powell (powellg@amazon.com) -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/control_structures.hpp b/include/boost/lambda/control_structures.hpp index fac3642..4164104 100644 --- a/include/boost/lambda/control_structures.hpp +++ b/include/boost/lambda/control_structures.hpp @@ -1,5 +1,5 @@ // -- control_structures.hpp -- Boost Lambda Library -------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/core.hpp b/include/boost/lambda/core.hpp index bcd8149..e42766f 100644 --- a/include/boost/lambda/core.hpp +++ b/include/boost/lambda/core.hpp @@ -1,7 +1,7 @@ // -- core.hpp -- Boost Lambda Library ------------------------------------- // // Copyright (C) 2000 Gary Powell (powellg@amazon.com) -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/actions.hpp b/include/boost/lambda/detail/actions.hpp index 5464d1a..668799f 100644 --- a/include/boost/lambda/detail/actions.hpp +++ b/include/boost/lambda/detail/actions.hpp @@ -1,6 +1,6 @@ // -- Boost Lambda Library - actions.hpp ---------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/arity_code.hpp b/include/boost/lambda/detail/arity_code.hpp index 6afd847..bed34b9 100644 --- a/include/boost/lambda/detail/arity_code.hpp +++ b/include/boost/lambda/detail/arity_code.hpp @@ -1,6 +1,6 @@ // -- Boost Lambda Library ------------------------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/bind_functions.hpp b/include/boost/lambda/detail/bind_functions.hpp index b76507b..f85513c 100644 --- a/include/boost/lambda/detail/bind_functions.hpp +++ b/include/boost/lambda/detail/bind_functions.hpp @@ -1,6 +1,6 @@ // -- bind_functions.hpp -- Boost Lambda Library // -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/control_constructs_common.hpp b/include/boost/lambda/detail/control_constructs_common.hpp index 4074a85..6826581 100644 --- a/include/boost/lambda/detail/control_constructs_common.hpp +++ b/include/boost/lambda/detail/control_constructs_common.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library -- control_constructs_common.hpp ------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/detail/control_structures_impl.hpp b/include/boost/lambda/detail/control_structures_impl.hpp index fd69fa5..56f80ac 100644 --- a/include/boost/lambda/detail/control_structures_impl.hpp +++ b/include/boost/lambda/detail/control_structures_impl.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library -- control_structures_impl.hpp --------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/detail/function_adaptors.hpp b/include/boost/lambda/detail/function_adaptors.hpp index d0a6acf..c30cbc6 100644 --- a/include/boost/lambda/detail/function_adaptors.hpp +++ b/include/boost/lambda/detail/function_adaptors.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - function_adaptors.hpp ---------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/is_instance_of.hpp b/include/boost/lambda/detail/is_instance_of.hpp index e8c9fa5..1dfbd43 100644 --- a/include/boost/lambda/detail/is_instance_of.hpp +++ b/include/boost/lambda/detail/is_instance_of.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - is_instance_of.hpp --------------------- -// Copyright (C) 2001 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2001 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/lambda_config.hpp b/include/boost/lambda/detail/lambda_config.hpp index c59e3da..9fd1a7b 100644 --- a/include/boost/lambda/detail/lambda_config.hpp +++ b/include/boost/lambda/detail/lambda_config.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - lambda_config.hpp ------------------------------ -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/lambda_functor_base.hpp b/include/boost/lambda/detail/lambda_functor_base.hpp index 90f5134..652bdda 100644 --- a/include/boost/lambda/detail/lambda_functor_base.hpp +++ b/include/boost/lambda/detail/lambda_functor_base.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library lambda_functor_base.hpp ----------------------------- // -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/lambda_functors.hpp b/include/boost/lambda/detail/lambda_functors.hpp index 5f04297..cb6060e 100644 --- a/include/boost/lambda/detail/lambda_functors.hpp +++ b/include/boost/lambda/detail/lambda_functors.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - lambda_functors.hpp ------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/lambda_fwd.hpp b/include/boost/lambda/detail/lambda_fwd.hpp index 363c364..a27bfad 100644 --- a/include/boost/lambda/detail/lambda_fwd.hpp +++ b/include/boost/lambda/detail/lambda_fwd.hpp @@ -1,6 +1,6 @@ // lambda_fwd.hpp - Boost Lambda Library ------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/lambda_traits.hpp b/include/boost/lambda/detail/lambda_traits.hpp index 54180a9..9a3a9b3 100644 --- a/include/boost/lambda/detail/lambda_traits.hpp +++ b/include/boost/lambda/detail/lambda_traits.hpp @@ -1,6 +1,6 @@ // - lambda_traits.hpp --- Boost Lambda Library ---------------------------- // -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/member_ptr.hpp b/include/boost/lambda/detail/member_ptr.hpp index f2ff22b..288f70c 100644 --- a/include/boost/lambda/detail/member_ptr.hpp +++ b/include/boost/lambda/detail/member_ptr.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library -- member_ptr.hpp --------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (gary.powell@sierra.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/detail/operator_actions.hpp b/include/boost/lambda/detail/operator_actions.hpp index 79a0d91..949b40f 100644 --- a/include/boost/lambda/detail/operator_actions.hpp +++ b/include/boost/lambda/detail/operator_actions.hpp @@ -1,6 +1,6 @@ // -- operator_actions.hpp - Boost Lambda Library ---------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/operator_lambda_func_base.hpp b/include/boost/lambda/detail/operator_lambda_func_base.hpp index dfa3d2f..12a6d93 100644 --- a/include/boost/lambda/detail/operator_lambda_func_base.hpp +++ b/include/boost/lambda/detail/operator_lambda_func_base.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - operator_lambda_func_base.hpp ----------------- // -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/operator_return_type_traits.hpp b/include/boost/lambda/detail/operator_return_type_traits.hpp index 79b422e..913fa86 100644 --- a/include/boost/lambda/detail/operator_return_type_traits.hpp +++ b/include/boost/lambda/detail/operator_return_type_traits.hpp @@ -1,6 +1,6 @@ // operator_return_type_traits.hpp -- Boost Lambda Library ------------------ -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/operators.hpp b/include/boost/lambda/detail/operators.hpp index cbef4a2..4fdece2 100644 --- a/include/boost/lambda/detail/operators.hpp +++ b/include/boost/lambda/detail/operators.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library - operators.hpp -------------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/ret.hpp b/include/boost/lambda/detail/ret.hpp index 9f90b6e..fbd8b3a 100644 --- a/include/boost/lambda/detail/ret.hpp +++ b/include/boost/lambda/detail/ret.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library ret.hpp ----------------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/return_type_traits.hpp b/include/boost/lambda/detail/return_type_traits.hpp index 043a891..d609e52 100644 --- a/include/boost/lambda/detail/return_type_traits.hpp +++ b/include/boost/lambda/detail/return_type_traits.hpp @@ -1,6 +1,6 @@ // return_type_traits.hpp -- Boost Lambda Library --------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/detail/select_functions.hpp b/include/boost/lambda/detail/select_functions.hpp index 9e5e71f..956045c 100644 --- a/include/boost/lambda/detail/select_functions.hpp +++ b/include/boost/lambda/detail/select_functions.hpp @@ -1,6 +1,6 @@ // -- select_functions.hpp -- Boost Lambda Library -------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/exceptions.hpp b/include/boost/lambda/exceptions.hpp index 799ce42..addb275 100644 --- a/include/boost/lambda/exceptions.hpp +++ b/include/boost/lambda/exceptions.hpp @@ -1,7 +1,7 @@ // -- Boost Lambda Library -- exceptions.hpp ---------------- // // Copyright (C) 2000 Gary Powell (gwpowell@hotmail.com) -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/if.hpp b/include/boost/lambda/if.hpp index aa0bcef..9ee915c 100644 --- a/include/boost/lambda/if.hpp +++ b/include/boost/lambda/if.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library -- if.hpp ------------------------------------------ -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (powellg@amazon.com) // Copyright (C) 2001-2002 Joel de Guzman // diff --git a/include/boost/lambda/lambda.hpp b/include/boost/lambda/lambda.hpp index c44aa85..75b06c7 100644 --- a/include/boost/lambda/lambda.hpp +++ b/include/boost/lambda/lambda.hpp @@ -1,5 +1,5 @@ // -- lambda.hpp -- Boost Lambda Library ----------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/include/boost/lambda/loops.hpp b/include/boost/lambda/loops.hpp index fe1021e..4e9b60b 100644 --- a/include/boost/lambda/loops.hpp +++ b/include/boost/lambda/loops.hpp @@ -1,6 +1,6 @@ // Boost Lambda Library -- loops.hpp ---------------------------------------- -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000 Gary Powell (powellg@amazon.com) // Copyright (c) 2001-2002 Joel de Guzman // diff --git a/include/boost/lambda/numeric.hpp b/include/boost/lambda/numeric.hpp index 3855602..40a95c7 100644 --- a/include/boost/lambda/numeric.hpp +++ b/include/boost/lambda/numeric.hpp @@ -1,5 +1,5 @@ // -- numeric.hpp -- Boost Lambda Library ----------------------------------- -// Copyright (C) 2002 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2002 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2002 Gary Powell (gwpowell@hotmail.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/include/boost/lambda/switch.hpp b/include/boost/lambda/switch.hpp index 9a1b3f9..a2c3bad 100644 --- a/include/boost/lambda/switch.hpp +++ b/include/boost/lambda/switch.hpp @@ -1,7 +1,7 @@ // Boost Lambda Library -- switch.hpp ----------------------------------- // // Copyright (C) 2000 Gary Powell (powellg@amazon.com) -// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at diff --git a/test/algorithm_test.cpp b/test/algorithm_test.cpp index 3f52b93..079b771 100644 --- a/test/algorithm_test.cpp +++ b/test/algorithm_test.cpp @@ -1,6 +1,6 @@ // bll_and_function.cpp - The Boost Lambda Library ----------------------- // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/bind_tests_advanced.cpp b/test/bind_tests_advanced.cpp index ae15e08..17afe10 100644 --- a/test/bind_tests_advanced.cpp +++ b/test/bind_tests_advanced.cpp @@ -1,6 +1,6 @@ // bind_tests_advanced.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/bind_tests_simple.cpp b/test/bind_tests_simple.cpp index 59b6f95..c7e273f 100644 --- a/test/bind_tests_simple.cpp +++ b/test/bind_tests_simple.cpp @@ -1,6 +1,6 @@ // bind_tests_simple.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/bind_tests_simple_f_refs.cpp b/test/bind_tests_simple_f_refs.cpp index b2a1d68..9f3b41e 100644 --- a/test/bind_tests_simple_f_refs.cpp +++ b/test/bind_tests_simple_f_refs.cpp @@ -1,6 +1,6 @@ // bind_tests_simple.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/bll_and_function.cpp b/test/bll_and_function.cpp index e638f0a..03bcc3e 100644 --- a/test/bll_and_function.cpp +++ b/test/bll_and_function.cpp @@ -1,6 +1,6 @@ // bll_and_function.cpp - The Boost Lambda Library ----------------------- // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/cast_test.cpp b/test/cast_test.cpp index de1009a..941b42f 100644 --- a/test/cast_test.cpp +++ b/test/cast_test.cpp @@ -1,6 +1,6 @@ // cast_tests.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/constructor_tests.cpp b/test/constructor_tests.cpp index ddd6723..0b77500 100644 --- a/test/constructor_tests.cpp +++ b/test/constructor_tests.cpp @@ -1,6 +1,6 @@ // constructor_tests.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/control_structures.cpp b/test/control_structures.cpp index b46e5ab..12eabf8 100644 --- a/test/control_structures.cpp +++ b/test/control_structures.cpp @@ -1,6 +1,6 @@ // -- control_structures.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/exception_test.cpp b/test/exception_test.cpp index 92fb449..3349fce 100644 --- a/test/exception_test.cpp +++ b/test/exception_test.cpp @@ -1,6 +1,6 @@ // -- exception_test.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/extending_rt_traits.cpp b/test/extending_rt_traits.cpp index 25cae0e..01335a5 100644 --- a/test/extending_rt_traits.cpp +++ b/test/extending_rt_traits.cpp @@ -1,6 +1,6 @@ // extending_return_type_traits.cpp -- The Boost Lambda Library -------- // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/is_instance_of_test.cpp b/test/is_instance_of_test.cpp index a63c525..d1c57b3 100644 --- a/test/is_instance_of_test.cpp +++ b/test/is_instance_of_test.cpp @@ -1,6 +1,6 @@ // is_instance_of_test.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/member_pointer_test.cpp b/test/member_pointer_test.cpp index 3efca05..802e991 100644 --- a/test/member_pointer_test.cpp +++ b/test/member_pointer_test.cpp @@ -1,6 +1,6 @@ // member_pointer_test.cpp -- The Boost Lambda Library ------------------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/operator_tests_simple.cpp b/test/operator_tests_simple.cpp index 163b8d5..d440fed 100644 --- a/test/operator_tests_simple.cpp +++ b/test/operator_tests_simple.cpp @@ -1,6 +1,6 @@ // operator_tests_simple.cpp -- The Boost Lambda Library --------------- // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/phoenix_control_structures.cpp b/test/phoenix_control_structures.cpp index 7dc1333..722a74f 100644 --- a/test/phoenix_control_structures.cpp +++ b/test/phoenix_control_structures.cpp @@ -1,6 +1,6 @@ // phoenix_style_control_structures.cpp -- The Boost Lambda Library ------ // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See diff --git a/test/switch_construct.cpp b/test/switch_construct.cpp index 89ed8c7..a0599fe 100644 --- a/test/switch_construct.cpp +++ b/test/switch_construct.cpp @@ -1,6 +1,6 @@ // switch_test.cpp -- The Boost Lambda Library -------------------------- // -// Copyright (C) 2000-2003 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) +// Copyright (C) 2000-2003 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // Copyright (C) 2000-2003 Gary Powell (powellg@amazon.com) // // Distributed under the Boost Software License, Version 1.0. (See