From cae6a36c1923b5d2e4ef9f95dc1c4e8d41912ead Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Sun, 15 Apr 2012 09:55:25 +0000 Subject: [PATCH] Thread: fix some macros using old move emilation [SVN r77985] --- include/boost/thread/detail/move.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/thread/detail/move.hpp b/include/boost/thread/detail/move.hpp index 8cd17821..787b7f27 100644 --- a/include/boost/thread/detail/move.hpp +++ b/include/boost/thread/detail/move.hpp @@ -84,7 +84,7 @@ namespace boost #else -#define BOOST_THREAD_RV_REF(TYPE) thread_move_t +#define BOOST_THREAD_RV_REF(TYPE) boost::detail::thread_move_t #define BOOST_THREAD_RV(V) (*V) #define BOOST_THREAD_FWD_REF(TYPE) BOOST_FWD_REF(TYPE) #endif @@ -148,13 +148,13 @@ namespace detail #else #define BOOST_THREAD_MOVABLE(TYPE) \ - operator detail::thread_move_t() BOOST_NOEXCEPT \ + operator ::boost::detail::thread_move_t() BOOST_NOEXCEPT \ { \ return move(); \ } \ - detail::thread_move_t move() BOOST_NOEXCEPT \ + ::boost::detail::thread_move_t move() BOOST_NOEXCEPT \ { \ - detail::thread_move_t x(*this); \ + ::boost::detail::thread_move_t x(*this); \ return x; \ } \