Boost logo

Boost-Commit :

From: thomas.klimpel_at_[hidden]
Date: 2008-08-15 06:37:59


Author: klimpel
Date: 2008-08-15 06:37:58 EDT (Fri, 15 Aug 2008)
New Revision: 48154
URL: http://svn.boost.org/trac/boost/changeset/48154

Log:
trying to fix issue reported by Jesse Perla when using some combination of VS2008 and Intel C++ 10.1.020 as build environment.

(I couldn't reproduce the issue with Intel C++ 10.1.011 used via bjam --toolset=intel-win, so I'm unable to say whether this patch fixes the issue.)
Text files modified:
   sandbox/boost/numeric/bindings/traits/config.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/boost/numeric/bindings/traits/config.hpp
==============================================================================
--- sandbox/boost/numeric/bindings/traits/config.hpp (original)
+++ sandbox/boost/numeric/bindings/traits/config.hpp 2008-08-15 06:37:58 EDT (Fri, 15 Aug 2008)
@@ -19,7 +19,7 @@
 # define BOOST_NUMERIC_BINDINGS_POOR_MANS_TRAITS
 # endif
 
-#elif defined(__ICC)
+#elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
 
 #elif defined(__IBMCPP__)
 


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