diff --git a/include/boost/thread/synchronized_value.hpp b/include/boost/thread/synchronized_value.hpp index 2583e88e..514c2348 100644 --- a/include/boost/thread/synchronized_value.hpp +++ b/include/boost/thread/synchronized_value.hpp @@ -274,7 +274,7 @@ namespace boost synchronized_value(BOOST_THREAD_RV_REF(synchronized_value) other) { strict_lock lk(other.mtx_); - value_= boost::move(other); + value_= boost::move(other.value); } /**