From 3b6079d13b5fff4a23aef4ae7c90e060dd11f878 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Thu, 5 Aug 2021 11:24:24 +0200 Subject: [PATCH] fixed previous workaround --- test/test_node_handling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_node_handling.cpp b/test/test_node_handling.cpp index d1cc368..d135297 100644 --- a/test/test_node_handling.cpp +++ b/test/test_node_handling.cpp @@ -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(boost::move(container(c2))); + c2.merge(static_cast(container(c2))); BOOST_TEST(c2.size()==20); }