From bebd56ee21e398f0db7e0bdfd517958539acfbc5 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Sat, 9 Feb 2013 14:05:55 +0000 Subject: [PATCH] Thread: fix synchronized_value move constructor. [SVN r82795] --- include/boost/thread/synchronized_value.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /**