Skip to content

Commit

Permalink
Merge pull request #411 from boostorg/function
Browse files Browse the repository at this point in the history
Fix boost::function streaming error
  • Loading branch information
mborland authored Feb 29, 2024
2 parents 2134870 + 2af843c commit 100a13c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/boost/test/detail/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class type_info;
#if (defined(BOOST_MSVC) && BOOST_MSVC < 1900) || (defined(BOOST_GCC) && BOOST_GCC < 40700)
# define BOOST_TEST_DEFAULTED_FUNCTION(fun, body) fun body
#else
# define BOOST_TEST_DEFAULTED_FUNCTION(fun, body) BOOST_DEFAULTED_FUNCTION(fun, body);
# define BOOST_TEST_DEFAULTED_FUNCTION(fun, body) BOOST_DEFAULTED_FUNCTION(fun, body)
#endif

//____________________________________________________________________________//
Expand Down
2 changes: 1 addition & 1 deletion test/test-organization-ts/test-tree-management-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ BOOST_AUTO_TEST_CASE( manual_test_case_creation_test )
BOOST_TEST( tc1->p_expected_failures == 0U );
BOOST_TEST( tc1->p_timeout == 0U );
BOOST_TEST( tc1->p_name == const_string( "empty_" ) );
BOOST_TEST( tc1->p_test_func );
BOOST_TEST( static_cast<bool>(tc1->p_test_func.get()) );
BOOST_TEST( tc1->p_default_status == test_unit::RS_INHERIT );
BOOST_TEST( tc1->p_run_status == test_unit::RS_INVALID );
BOOST_TEST( !tc1->is_enabled() );
Expand Down

0 comments on commit 100a13c

Please sign in to comment.