$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85539 - trunk/boost/thread/win32
From: vicente.botet_at_[hidden]
Date: 2013-09-01 03:22:22
Author: viboes
Date: 2013-09-01 03:22:21 EDT (Sun, 01 Sep 2013)
New Revision: 85539
URL: http://svn.boost.org/trac/boost/changeset/85539
Log:
Thread: try to handle with call_once intel issue #8943.
Text files modified:
trunk/boost/thread/win32/once.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/thread/win32/once.hpp
==============================================================================
--- trunk/boost/thread/win32/once.hpp Sat Aug 31 19:24:40 2013 (r85538)
+++ trunk/boost/thread/win32/once.hpp 2013-09-01 03:22:21 EDT (Sun, 01 Sep 2013) (r85539)
@@ -363,7 +363,7 @@
}
}
#else
-#ifndef BOOST_MSVC
+#if ! defined(BOOST_MSVC) && ! defined(BOOST_INTEL)
template<typename Function>
void call_once(once_flag& flag,Function f)
{