$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82308 - trunk/boost/thread/detail
From: vicente.botet_at_[hidden]
Date: 2013-01-01 05:01:57
Author: viboes
Date: 2013-01-01 05:01:56 EST (Tue, 01 Jan 2013)
New Revision: 82308
URL: http://svn.boost.org/trac/boost/changeset/82308
Log:
Thread: extend the workaround on intel compilers up to version 13.0
Text files modified: 
   trunk/boost/thread/detail/is_convertible.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/thread/detail/is_convertible.hpp
==============================================================================
--- trunk/boost/thread/detail/is_convertible.hpp	(original)
+++ trunk/boost/thread/detail/is_convertible.hpp	2013-01-01 05:01:56 EST (Tue, 01 Jan 2013)
@@ -23,7 +23,7 @@
 
 #if defined  BOOST_NO_CXX11_RVALUE_REFERENCES
 
-#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 1001)
+#if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 1300)
 
 #if defined BOOST_THREAD_USES_MOVE
     template <typename T1, typename T2>