|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r74639 - trunk/boost/config/compiler
From: john_at_[hidden]
Date: 2011-10-02 04:33:13
Author: johnmaddock
Date: 2011-10-02 04:33:11 EDT (Sun, 02 Oct 2011)
New Revision: 74639
URL: http://svn.boost.org/trac/boost/changeset/74639
Log:
Fix Boost.Config for Intel-12.1.
Text files modified:
trunk/boost/config/compiler/intel.hpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/boost/config/compiler/intel.hpp
==============================================================================
--- trunk/boost/config/compiler/intel.hpp (original)
+++ trunk/boost/config/compiler/intel.hpp 2011-10-02 04:33:11 EDT (Sun, 02 Oct 2011)
@@ -179,8 +179,9 @@
// intel-vc9-win-11.1 may leave a non-POD array uninitialized, in some
// cases when it should be value-initialized.
// (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
+# if (__INTEL_COMPILER <= 1110) || (__INTEL_COMPILER == 9999)
# 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