From e1d6baddd6357eacfa86cb10dfbccb546280aae4 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Tue, 12 Nov 2013 18:32:37 +0000 Subject: [PATCH] Thread: merge missing thread move constructor noexcept. [SVN r86656] --- include/boost/thread/detail/thread.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/thread/detail/thread.hpp b/include/boost/thread/detail/thread.hpp index a6e2da30..43779344 100644 --- a/include/boost/thread/detail/thread.hpp +++ b/include/boost/thread/detail/thread.hpp @@ -4,7 +4,7 @@ // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // (C) Copyright 2007-2010 Anthony Williams -// (C) Copyright 20011-2012 Vicente J. Botet Escriba +// (C) Copyright 2011-2012 Vicente J. Botet Escriba #include @@ -334,7 +334,7 @@ namespace boost start_thread(attrs); } #endif - thread(BOOST_THREAD_RV_REF(thread) x) + thread(BOOST_THREAD_RV_REF(thread) x) BOOST_NOEXCEPT { thread_info=BOOST_THREAD_RV(x).thread_info; BOOST_THREAD_RV(x).thread_info.reset();