added explicit boost::move on rvalue ref

for the benefit of C++03 compilers
This commit is contained in:
joaquintides 2021-08-05 09:37:21 +02:00
parent 7d2b9dd808
commit d8cd4ab6bc

View File

@ -434,7 +434,7 @@ void test_merge()
BOOST_TEST(c2.size()==10);
c2.merge(boost::move(c2.get<3>()));
BOOST_TEST(c2.size()==10);
c2.merge(container(c2));
c2.merge(boost::move(container(c2)));
BOOST_TEST(c2.size()==20);
}