Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84382 - branches/release/boost/config/compiler
From: john_at_[hidden]
Date: 2013-05-20 04:15:02


Author: johnmaddock
Date: 2013-05-20 04:14:59 EDT (Mon, 20 May 2013)
New Revision: 84382
URL: http://svn.boost.org/trac/boost/changeset/84382

Log:
Merge fix for Intel on Win32.
Text files modified:
   branches/release/boost/config/compiler/intel.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/release/boost/config/compiler/intel.hpp
==============================================================================
--- branches/release/boost/config/compiler/intel.hpp (original)
+++ branches/release/boost/config/compiler/intel.hpp 2013-05-20 04:14:59 EDT (Mon, 20 May 2013)
@@ -181,7 +181,7 @@
 // (Niels Dekker, LKEB, May 2010)
 // Apparently Intel 12.1 (compiler version number 9999 !!) has the same issue (compiler regression).
 #if defined(__INTEL_COMPILER)
-# if (__INTEL_COMPILER <= 1110) || (__INTEL_COMPILER == 9999)
+# if (__INTEL_COMPILER <= 1110) || (__INTEL_COMPILER == 9999) || (defined(_WIN32) && (__INTEL_COMPILER < 1500))
 # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
 # endif
 #endif


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