Minor config tweek

[SVN r11412]
This commit is contained in:
John Maddock
2001-10-21 11:01:10 +00:00
parent e899c77505
commit 3f58e08292

View File

@ -17,11 +17,16 @@
# define BOOST_INTEL_CXX_VERSION __ICC
#endif
#if (BOOST_INTEL_CXX_VERSION <= 500) && defined(_MSC_VER)
# define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#endif
#if (BOOST_INTEL_CXX_VERSION <= 600) || !defined(BOOST_STRICT_CONFIG)
# if defined(_MSC_VER)
// Intel C++ 5.0.1 uses EDG 2.45, but fails to activate Koenig lookup
// in the frontend even in "strict" mode. (reported by Kirk Klobe)
// in the frontend even in "strict" mode, unless you use
// -Qoption,cpp,--arg_dep_lookup.. (reported by Kirk Klobe & Thomas Witt)
// Intel C++ 6.0 (currently in Beta test) doesn't have any front-end
// changes at all. (reported by Kirk Klobe)
# ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
@ -59,3 +64,4 @@
#endif