Define BOOST_NO_MEMBER_TEMPLATE_KEYWORD only for compiler version <= 502.

[SVN r17484]
This commit is contained in:
Markus Schöpflin
2003-02-17 12:34:08 +00:00
parent 44d1e083e8
commit f07d411903

View File

@@ -12,13 +12,15 @@
# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
#endif
#if (__IBMCPP__ <= 502)
# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
#endif
#if (__IBMCPP__ <= 502) || !defined(BOOST_STRICT_CONFIG)
// Actually the compiler supports inclass member initialization but it
// requires a definition for the class member and it doesn't recognize
// it as an integral constant expression when used as a template argument.
# define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
# define BOOST_NO_INTEGRAL_INT64_T
#endif