From 6225c8309af80d1b884aa9d70b2f19672d67bab2 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Fri, 21 Jun 2013 23:10:48 +0000 Subject: [PATCH] Thread: merge fix for msvc 8/9 regression. [SVN r84870] --- include/boost/thread/detail/delete.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/thread/detail/delete.hpp b/include/boost/thread/detail/delete.hpp index 56fa1cdf..444c54e7 100644 --- a/include/boost/thread/detail/delete.hpp +++ b/include/boost/thread/detail/delete.hpp @@ -23,7 +23,7 @@ CLASS& operator=(CLASS const&) = delete; #else // BOOST_NO_CXX11_DELETED_FUNCTIONS -#if defined(BOOST_MSVC) +#if defined(BOOST_MSVC) && _MSC_VER >= 1600 #define BOOST_THREAD_DELETE_COPY_CTOR(CLASS) \ private: \ CLASS(CLASS const&); \