mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Replace Boost.Move by std equivalents
This commit is contained in:
parent
b86100a667
commit
9e664b52ab
15 changed files with 44 additions and 108 deletions
|
|
@ -257,7 +257,7 @@ BOOST_AUTO_TEST_CASE( retrieve_constraint )
|
|||
{
|
||||
std::unique_ptr< int > i;
|
||||
std::unique_ptr< int > j( new int( 3 ) );
|
||||
BOOST_CHECK( mock::retrieve( i ).c_( boost::move( j ) ) );
|
||||
BOOST_CHECK( mock::retrieve( i ).c_( std::move( j ) ) );
|
||||
BOOST_REQUIRE( i );
|
||||
BOOST_CHECK_EQUAL( 3, *i );
|
||||
BOOST_CHECK( !j );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue