$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84279 - trunk/boost/config/compiler
From: john_at_[hidden]
Date: 2013-05-14 06:54:44
Author: johnmaddock
Date: 2013-05-14 06:54:43 EDT (Tue, 14 May 2013)
New Revision: 84279
URL: http://svn.boost.org/trac/boost/changeset/84279
Log:
Fix for Intel-14 Beta on Win32.
Text files modified: 
   trunk/boost/config/compiler/intel.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/config/compiler/intel.hpp
==============================================================================
--- trunk/boost/config/compiler/intel.hpp	(original)
+++ trunk/boost/config/compiler/intel.hpp	2013-05-14 06:54:43 EDT (Tue, 14 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