vacpp.hpp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. // (C) Copyright John Maddock 2001 - 2003.
  2. // (C) Copyright Toon Knapen 2001 - 2003.
  3. // (C) Copyright Lie-Quan Lee 2001.
  4. // (C) Copyright Markus Schoepflin 2002 - 2003.
  5. // (C) Copyright Beman Dawes 2002 - 2003.
  6. // Use, modification and distribution are subject to the
  7. // Boost Software License, Version 1.0. (See accompanying file
  8. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. // See http://www.boost.org for most recent version.
  10. // Visual Age (IBM) C++ compiler setup:
  11. #if __IBMCPP__ <= 501
  12. # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  13. # define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
  14. #endif
  15. #if (__IBMCPP__ <= 502)
  16. // Actually the compiler supports inclass member initialization but it
  17. // requires a definition for the class member and it doesn't recognize
  18. // it as an integral constant expression when used as a template argument.
  19. # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  20. # define BOOST_NO_INTEGRAL_INT64_T
  21. # define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
  22. #endif
  23. #if (__IBMCPP__ <= 600) || !defined(BOOST_STRICT_CONFIG)
  24. # define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
  25. #endif
  26. #if (__IBMCPP__ <= 1110)
  27. // XL C++ V11.1 and earlier versions may not always value-initialize
  28. // a temporary object T(), when T is a non-POD aggregate class type.
  29. // Michael Wong (IBM Canada Ltd) has confirmed this issue and gave it
  30. // high priority. -- Niels Dekker (LKEB), May 2010.
  31. # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  32. #endif
  33. //
  34. // On AIX thread support seems to be indicated by _THREAD_SAFE:
  35. //
  36. #ifdef _THREAD_SAFE
  37. # define BOOST_HAS_THREADS
  38. #endif
  39. #define BOOST_COMPILER "IBM Visual Age version " BOOST_STRINGIZE(__IBMCPP__)
  40. //
  41. // versions check:
  42. // we don't support Visual age prior to version 5:
  43. #if __IBMCPP__ < 500
  44. #error "Compiler not supported or configured - please reconfigure"
  45. #endif
  46. //
  47. // last known and checked version is 1210:
  48. #if (__IBMCPP__ > 1210)
  49. # if defined(BOOST_ASSERT_CONFIG)
  50. # error "Unknown compiler version - please run the configure tests and report the results"
  51. # endif
  52. #endif
  53. // Some versions of the compiler have issues with default arguments on partial specializations
  54. #if __IBMCPP__ <= 1010
  55. #define BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
  56. #endif
  57. //
  58. // C++0x features
  59. //
  60. // See boost\config\suffix.hpp for BOOST_NO_LONG_LONG
  61. //
  62. #if ! __IBMCPP_AUTO_TYPEDEDUCTION
  63. # define BOOST_NO_CXX11_AUTO_DECLARATIONS
  64. # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  65. #endif
  66. #if ! __IBMCPP_UTF_LITERAL__
  67. # define BOOST_NO_CXX11_CHAR16_T
  68. # define BOOST_NO_CXX11_CHAR32_T
  69. #endif
  70. #if ! __IBMCPP_CONSTEXPR
  71. # define BOOST_NO_CXX11_CONSTEXPR
  72. #endif
  73. #if ! __IBMCPP_DECLTYPE
  74. # define BOOST_NO_CXX11_DECLTYPE
  75. #else
  76. # define BOOST_HAS_DECLTYPE
  77. #endif
  78. #define BOOST_NO_CXX11_DECLTYPE_N3276
  79. #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  80. #define BOOST_NO_CXX11_DELETED_FUNCTIONS
  81. #if ! __IBMCPP_EXPLICIT_CONVERSION_OPERATORS
  82. # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  83. #endif
  84. #if ! __IBMCPP_EXTERN_TEMPLATE
  85. # define BOOST_NO_CXX11_EXTERN_TEMPLATE
  86. #endif
  87. #if ! __IBMCPP_VARIADIC_TEMPLATES
  88. // not enabled separately at this time
  89. # define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  90. #endif
  91. #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  92. #define BOOST_NO_CXX11_LAMBDAS
  93. #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  94. #define BOOST_NO_CXX11_NOEXCEPT
  95. #define BOOST_NO_CXX11_NULLPTR
  96. #define BOOST_NO_CXX11_RANGE_BASED_FOR
  97. #define BOOST_NO_CXX11_RAW_LITERALS
  98. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  99. #if ! __IBMCPP_RVALUE_REFERENCES
  100. # define BOOST_NO_CXX11_RVALUE_REFERENCES
  101. #endif
  102. #if ! __IBMCPP_SCOPED_ENUM
  103. # define BOOST_NO_CXX11_SCOPED_ENUMS
  104. #endif
  105. #define BOOST_NO_SFINAE_EXPR
  106. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  107. #if ! __IBMCPP_STATIC_ASSERT
  108. # define BOOST_NO_CXX11_STATIC_ASSERT
  109. #endif
  110. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  111. #define BOOST_NO_CXX11_UNICODE_LITERALS
  112. #if ! __IBMCPP_VARIADIC_TEMPLATES
  113. # define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  114. #endif
  115. #if ! __C99_MACRO_WITH_VA_ARGS
  116. # define BOOST_NO_CXX11_VARIADIC_MACROS
  117. #endif
  118. #define BOOST_NO_CXX11_ALIGNAS
  119. #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  120. #define BOOST_NO_CXX11_INLINE_NAMESPACES
  121. #define BOOST_NO_CXX11_REF_QUALIFIERS
  122. #define BOOST_NO_CXX11_FINAL
  123. // C++ 14:
  124. #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
  125. # define BOOST_NO_CXX14_AGGREGATE_NSDMI
  126. #endif
  127. #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
  128. # define BOOST_NO_CXX14_BINARY_LITERALS
  129. #endif
  130. #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
  131. # define BOOST_NO_CXX14_CONSTEXPR
  132. #endif
  133. #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
  134. # define BOOST_NO_CXX14_DECLTYPE_AUTO
  135. #endif
  136. #if (__cplusplus < 201304) // There's no SD6 check for this....
  137. # define BOOST_NO_CXX14_DIGIT_SEPARATORS
  138. #endif
  139. #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
  140. # define BOOST_NO_CXX14_GENERIC_LAMBDAS
  141. #endif
  142. #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
  143. # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  144. #endif
  145. #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
  146. # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  147. #endif
  148. #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
  149. # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
  150. #endif