mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-09 23:14:04 +00:00
added explicit boost::move on rvalue ref
for the benefit of C++03 compilers
This commit is contained in:
parent
7d2b9dd808
commit
d8cd4ab6bc
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user