mirror of
https://github.com/boostorg/config.git
synced 2025-08-01 05:14:28 +02:00
Fix Boost.Config for Intel-12.1.
[SVN r74639]
This commit is contained in:
@@ -179,8 +179,9 @@ template<> struct assert_intrinsic_wchar_t<unsigned short> {};
|
|||||||
// intel-vc9-win-11.1 may leave a non-POD array uninitialized, in some
|
// intel-vc9-win-11.1 may leave a non-POD array uninitialized, in some
|
||||||
// cases when it should be value-initialized.
|
// cases when it should be value-initialized.
|
||||||
// (Niels Dekker, LKEB, May 2010)
|
// (Niels Dekker, LKEB, May 2010)
|
||||||
|
// Apparently Intel 12.1 (compiler version number 9999 !!) has the same issue (compiler regression).
|
||||||
#if defined(__INTEL_COMPILER)
|
#if defined(__INTEL_COMPILER)
|
||||||
# if __INTEL_COMPILER <= 1110
|
# if (__INTEL_COMPILER <= 1110) || (__INTEL_COMPILER == 9999)
|
||||||
# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
|
# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user