From ba356592939b881827ec2e2ea1f97cf56079667b Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sat, 18 Jan 2003 16:36:42 +0000 Subject: [PATCH] fix #ifdef-s [SVN r16931] --- include/boost/mpl/aux_/has_xxx.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/has_xxx.hpp b/include/boost/mpl/aux_/has_xxx.hpp index 5b65966..5afc6f8 100644 --- a/include/boost/mpl/aux_/has_xxx.hpp +++ b/include/boost/mpl/aux_/has_xxx.hpp @@ -26,7 +26,7 @@ #if !defined(BOOST_MPL_BROKEN_OVERLOAD_RESOLUTION) && (!defined(__GNUC__) || __GNUC__ == 3) # if (!defined(BOOST_MSVC) || BOOST_MSVC > 1300) \ - && (!defined _MSC_VER || defined(BOOST_INTEL_CXX_VERSION)) + && (!defined(BOOST_INTEL_CXX_VERSION) || BOOST_INTEL_CXX_VERSION > 500) // the implementation below is based on a USENET newsgroup's posting by // Rani Sharoni (comp.lang.c++.moderated, 2002-03-17 07:45:09 PST)