Mercurial > hg > vamp-build-and-test
diff DEPENDENCIES/generic/include/boost/thread/externally_locked.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
line wrap: on
line diff
--- a/DEPENDENCIES/generic/include/boost/thread/externally_locked.hpp Fri Sep 04 12:01:02 2015 +0100 +++ b/DEPENDENCIES/generic/include/boost/thread/externally_locked.hpp Mon Sep 07 11:12:49 2015 +0100 @@ -18,7 +18,7 @@ #include <boost/static_assert.hpp> #include <boost/type_traits/is_same.hpp> #include <boost/throw_exception.hpp> -#include <boost/utility/swap.hpp> +#include <boost/core/swap.hpp> #include <boost/config/abi_prefix.hpp> @@ -97,7 +97,7 @@ /// move assignment externally_locked& operator=(BOOST_THREAD_RV_REF(externally_locked) rhs) // BOOST_NOEXCEPT { - obj_=move(rhs.obj_); + obj_=move(BOOST_THREAD_RV(rhs).obj_); mtx_=rhs.mtx_; return *this; }