123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- # if __SUNPRO_CC <= 0x500
- # define BOOST_NO_MEMBER_TEMPLATES
- # define BOOST_NO_FUNCTION_TEMPLATE_ORDERING
- # endif
- # if (__SUNPRO_CC <= 0x520)
-
-
-
-
-
-
-
- # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
-
-
-
-
-
- # define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
- # endif
- # if (__SUNPRO_CC <= 0x530)
-
-
-
-
-
-
- # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
-
-
-
-
-
-
-
- # define BOOST_NO_INTEGRAL_INT64_T
- # endif
- # if (__SUNPRO_CC < 0x570)
- # define BOOST_NO_TEMPLATE_TEMPLATES
-
-
- # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
- # define BOOST_NO_SFINAE
- # define BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
- # endif
- # if (__SUNPRO_CC <= 0x580)
- # define BOOST_NO_IS_ABSTRACT
- # endif
- #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
- #define BOOST_NO_ADL_BARRIER
- #if(__SUNPRO_CC >= 0x590)
- # define BOOST_HAS_LONG_LONG
- #else
- # define BOOST_NO_LONG_LONG
- #endif
- #define BOOST_NO_AUTO_DECLARATIONS
- #define BOOST_NO_AUTO_MULTIDECLARATIONS
- #define BOOST_NO_CHAR16_T
- #define BOOST_NO_CHAR32_T
- #define BOOST_NO_CONCEPTS
- #define BOOST_NO_CONSTEXPR
- #define BOOST_NO_DECLTYPE
- #define BOOST_NO_DEFAULTED_FUNCTIONS
- #define BOOST_NO_DELETED_FUNCTIONS
- #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
- #define BOOST_NO_EXTERN_TEMPLATE
- #define BOOST_NO_INITIALIZER_LISTS
- #define BOOST_NO_LAMBDAS
- #define BOOST_NO_NULLPTR
- #define BOOST_NO_RAW_LITERALS
- #define BOOST_NO_RVALUE_REFERENCES
- #define BOOST_NO_SCOPED_ENUMS
- #define BOOST_NO_STATIC_ASSERT
- #define BOOST_NO_TEMPLATE_ALIASES
- #define BOOST_NO_UNICODE_LITERALS
- #define BOOST_NO_VARIADIC_TEMPLATES
- #define BOOST_COMPILER "Sun compiler version " BOOST_STRINGIZE(__SUNPRO_CC)
- #if __SUNPRO_CC < 0x400
- #error "Compiler not supported or configured - please reconfigure"
- #endif
- #if (__SUNPRO_CC > 0x590)
- # if defined(BOOST_ASSERT_CONFIG)
- # error "Unknown compiler version - please run the configure tests and report the results"
- # endif
- #endif
|