Remove BOOST_COPY_ASSIGN_REF

This commit is contained in:
Christian Mazakas
2023-09-22 15:40:46 -07:00
parent ac17b00db5
commit 49b5d36836
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ namespace test {
x.tag2_ = -1;
}
movable& operator=(BOOST_COPY_ASSIGN_REF(movable) x) // Copy assignment
movable& operator=(movable const& x) // Copy assignment
{
BOOST_TEST(x.tag1_ != -1);
tag1_ = x.tag1_;