|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r84870 - branches/release/boost/thread/detail
From: vicente.botet_at_[hidden]
Date: 2013-06-21 19:10:48
Author: viboes
Date: 2013-06-21 19:10:48 EDT (Fri, 21 Jun 2013)
New Revision: 84870
URL: http://svn.boost.org/trac/boost/changeset/84870
Log:
Thread: merge fix for msvc 8/9 regression.
Text files modified:
branches/release/boost/thread/detail/delete.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/boost/thread/detail/delete.hpp
==============================================================================
--- branches/release/boost/thread/detail/delete.hpp Fri Jun 21 16:06:45 2013 (r84869)
+++ branches/release/boost/thread/detail/delete.hpp 2013-06-21 19:10:48 EDT (Fri, 21 Jun 2013) (r84870)
@@ -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&); \
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk