From 2252441d0ed2dbcb319d925b9514f6e8268e25f8 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Thu, 6 Mar 2008 23:03:09 +0000 Subject: [PATCH] Merged revisions 43518-43532 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r43523 | eric_niebler | 2008-03-05 17:56:57 -0800 (Wed, 05 Mar 2008) | 1 line fix documentation about droppable, replace accumulator_set_wrapper example with bind() and ref() ........ r43524 | hkaiser | 2008-03-05 19:28:47 -0800 (Wed, 05 Mar 2008) | 1 line Wave: Fixed #1673. ........ r43525 | emildotchevski | 2008-03-05 21:08:22 -0800 (Wed, 05 Mar 2008) | 1 line hooking up boost exception for testing ........ r43526 | vladimir_prus | 2008-03-05 22:06:17 -0800 (Wed, 05 Mar 2008) | 6 lines Add 'pythonpath' feature to specify additional PYTHONPATH elements. Make bpl-test correctly set dependencies if used with multiple .pyd sources. Patch from Joshua Napoli. ........ r43527 | vladimir_prus | 2008-03-05 22:57:27 -0800 (Wed, 05 Mar 2008) | 6 lines Arrange for HPP source to be scanned for #includes, too. This fixes PCH not being rebuild when some other headers included from HPP being compiled change. Thanks to Pierre-Luc Neron for the bug report. ........ r43528 | anthonyw | 2008-03-05 23:59:16 -0800 (Wed, 05 Mar 2008) | 1 line made the callable_no_args function object a named object rather than a temporary, in order to avoid gratuitous breakage on some compilers ........ r43530 | eric_niebler | 2008-03-06 09:56:42 -0800 (Thu, 06 Mar 2008) | 1 line work around msvc-7.1 bug ........ r43531 | eric_niebler | 2008-03-06 10:07:22 -0800 (Thu, 06 Mar 2008) | 1 line fix warnings ........ [SVN r43533] --- test/test_thread_launching.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_thread_launching.cpp b/test/test_thread_launching.cpp index 28903dbc..0e03d69d 100644 --- a/test/test_thread_launching.cpp +++ b/test/test_thread_launching.cpp @@ -37,7 +37,8 @@ bool callable_no_args::called=false; void test_thread_callable_object_no_arguments() { - boost::thread callable((callable_no_args())); + callable_no_args func; + boost::thread callable(func); callable.join(); BOOST_CHECK(callable_no_args::called); }