workaround.hpp 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. // Copyright David Abrahams 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef WORKAROUND_DWA2002126_HPP
  6. # define WORKAROUND_DWA2002126_HPP
  7. // Compiler/library version workaround macro
  8. //
  9. // Usage:
  10. //
  11. // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
  12. // // workaround for eVC4 and VC6
  13. // ... // workaround code here
  14. // #endif
  15. //
  16. // When BOOST_STRICT_CONFIG is defined, expands to 0. Otherwise, the
  17. // first argument must be undefined or expand to a numeric
  18. // value. The above expands to:
  19. //
  20. // (BOOST_MSVC) != 0 && (BOOST_MSVC) < 1300
  21. //
  22. // When used for workarounds that apply to the latest known version
  23. // and all earlier versions of a compiler, the following convention
  24. // should be observed:
  25. //
  26. // #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1301))
  27. //
  28. // The version number in this case corresponds to the last version in
  29. // which the workaround was known to have been required. When
  30. // BOOST_DETECT_OUTDATED_WORKAROUNDS is not the defined, the macro
  31. // BOOST_TESTED_AT(x) expands to "!= 0", which effectively activates
  32. // the workaround for any version of the compiler. When
  33. // BOOST_DETECT_OUTDATED_WORKAROUNDS is defined, a compiler warning or
  34. // error will be issued if the compiler version exceeds the argument
  35. // to BOOST_TESTED_AT(). This can be used to locate workarounds which
  36. // may be obsoleted by newer versions.
  37. # ifndef BOOST_STRICT_CONFIG
  38. #include <boost/config.hpp>
  39. #ifndef __BORLANDC__
  40. #define __BORLANDC___WORKAROUND_GUARD 1
  41. #else
  42. #define __BORLANDC___WORKAROUND_GUARD 0
  43. #endif
  44. #ifndef __CODEGEARC__
  45. #define __CODEGEARC___WORKAROUND_GUARD 1
  46. #else
  47. #define __CODEGEARC___WORKAROUND_GUARD 0
  48. #endif
  49. #ifndef _MSC_VER
  50. #define _MSC_VER_WORKAROUND_GUARD 1
  51. #else
  52. #define _MSC_VER_WORKAROUND_GUARD 0
  53. #endif
  54. #ifndef _MSC_FULL_VER
  55. #define _MSC_FULL_VER_WORKAROUND_GUARD 1
  56. #else
  57. #define _MSC_FULL_VER_WORKAROUND_GUARD 0
  58. #endif
  59. #ifndef BOOST_MSVC
  60. #define BOOST_MSVC_WORKAROUND_GUARD 1
  61. #else
  62. #define BOOST_MSVC_WORKAROUND_GUARD 0
  63. #endif
  64. #ifndef BOOST_MSVC_FULL_VER
  65. #define BOOST_MSVC_FULL_VER_WORKAROUND_GUARD 1
  66. #else
  67. #define BOOST_MSVC_FULL_VER_WORKAROUND_GUARD 0
  68. #endif
  69. #ifndef __GNUC__
  70. #define __GNUC___WORKAROUND_GUARD 1
  71. #else
  72. #define __GNUC___WORKAROUND_GUARD 0
  73. #endif
  74. #ifndef __GNUC_MINOR__
  75. #define __GNUC_MINOR___WORKAROUND_GUARD 1
  76. #else
  77. #define __GNUC_MINOR___WORKAROUND_GUARD 0
  78. #endif
  79. #ifndef __GNUC_PATCHLEVEL__
  80. #define __GNUC_PATCHLEVEL___WORKAROUND_GUARD 1
  81. #else
  82. #define __GNUC_PATCHLEVEL___WORKAROUND_GUARD 0
  83. #endif
  84. #ifndef __IBMCPP__
  85. #define __IBMCPP___WORKAROUND_GUARD 1
  86. #else
  87. #define __IBMCPP___WORKAROUND_GUARD 0
  88. #endif
  89. #ifndef __SUNPRO_CC
  90. #define __SUNPRO_CC_WORKAROUND_GUARD 1
  91. #else
  92. #define __SUNPRO_CC_WORKAROUND_GUARD 0
  93. #endif
  94. #ifndef __DECCXX_VER
  95. #define __DECCXX_VER_WORKAROUND_GUARD 1
  96. #else
  97. #define __DECCXX_VER_WORKAROUND_GUARD 0
  98. #endif
  99. #ifndef __MWERKS__
  100. #define __MWERKS___WORKAROUND_GUARD 1
  101. #else
  102. #define __MWERKS___WORKAROUND_GUARD 0
  103. #endif
  104. #ifndef __EDG__
  105. #define __EDG___WORKAROUND_GUARD 1
  106. #else
  107. #define __EDG___WORKAROUND_GUARD 0
  108. #endif
  109. #ifndef __EDG_VERSION__
  110. #define __EDG_VERSION___WORKAROUND_GUARD 1
  111. #else
  112. #define __EDG_VERSION___WORKAROUND_GUARD 0
  113. #endif
  114. #ifndef __HP_aCC
  115. #define __HP_aCC_WORKAROUND_GUARD 1
  116. #else
  117. #define __HP_aCC_WORKAROUND_GUARD 0
  118. #endif
  119. #ifndef __hpxstd98
  120. #define __hpxstd98_WORKAROUND_GUARD 1
  121. #else
  122. #define __hpxstd98_WORKAROUND_GUARD 0
  123. #endif
  124. #ifndef _CRAYC
  125. #define _CRAYC_WORKAROUND_GUARD 1
  126. #else
  127. #define _CRAYC_WORKAROUND_GUARD 0
  128. #endif
  129. #ifndef __DMC__
  130. #define __DMC___WORKAROUND_GUARD 1
  131. #else
  132. #define __DMC___WORKAROUND_GUARD 0
  133. #endif
  134. #ifndef MPW_CPLUS
  135. #define MPW_CPLUS_WORKAROUND_GUARD 1
  136. #else
  137. #define MPW_CPLUS_WORKAROUND_GUARD 0
  138. #endif
  139. #ifndef __COMO__
  140. #define __COMO___WORKAROUND_GUARD 1
  141. #else
  142. #define __COMO___WORKAROUND_GUARD 0
  143. #endif
  144. #ifndef __COMO_VERSION__
  145. #define __COMO_VERSION___WORKAROUND_GUARD 1
  146. #else
  147. #define __COMO_VERSION___WORKAROUND_GUARD 0
  148. #endif
  149. #ifndef __INTEL_COMPILER
  150. #define __INTEL_COMPILER_WORKAROUND_GUARD 1
  151. #else
  152. #define __INTEL_COMPILER_WORKAROUND_GUARD 0
  153. #endif
  154. #ifndef __ICL
  155. #define __ICL_WORKAROUND_GUARD 1
  156. #else
  157. #define __ICL_WORKAROUND_GUARD 0
  158. #endif
  159. #ifndef _COMPILER_VERSION
  160. #define _COMPILER_VERSION_WORKAROUND_GUARD 1
  161. #else
  162. #define _COMPILER_VERSION_WORKAROUND_GUARD 0
  163. #endif
  164. #ifndef _RWSTD_VER
  165. #define _RWSTD_VER_WORKAROUND_GUARD 1
  166. #else
  167. #define _RWSTD_VER_WORKAROUND_GUARD 0
  168. #endif
  169. #ifndef BOOST_RWSTD_VER
  170. #define BOOST_RWSTD_VER_WORKAROUND_GUARD 1
  171. #else
  172. #define BOOST_RWSTD_VER_WORKAROUND_GUARD 0
  173. #endif
  174. #ifndef __GLIBCPP__
  175. #define __GLIBCPP___WORKAROUND_GUARD 1
  176. #else
  177. #define __GLIBCPP___WORKAROUND_GUARD 0
  178. #endif
  179. #ifndef _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC
  180. #define _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC_WORKAROUND_GUARD 1
  181. #else
  182. #define _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC_WORKAROUND_GUARD 0
  183. #endif
  184. #ifndef __SGI_STL_PORT
  185. #define __SGI_STL_PORT_WORKAROUND_GUARD 1
  186. #else
  187. #define __SGI_STL_PORT_WORKAROUND_GUARD 0
  188. #endif
  189. #ifndef _STLPORT_VERSION
  190. #define _STLPORT_VERSION_WORKAROUND_GUARD 1
  191. #else
  192. #define _STLPORT_VERSION_WORKAROUND_GUARD 0
  193. #endif
  194. #ifndef __LIBCOMO_VERSION__
  195. #define __LIBCOMO_VERSION___WORKAROUND_GUARD 1
  196. #else
  197. #define __LIBCOMO_VERSION___WORKAROUND_GUARD 0
  198. #endif
  199. #ifndef _CPPLIB_VER
  200. #define _CPPLIB_VER_WORKAROUND_GUARD 1
  201. #else
  202. #define _CPPLIB_VER_WORKAROUND_GUARD 0
  203. #endif
  204. #ifndef BOOST_INTEL_CXX_VERSION
  205. #define BOOST_INTEL_CXX_VERSION_WORKAROUND_GUARD 1
  206. #else
  207. #define BOOST_INTEL_CXX_VERSION_WORKAROUND_GUARD 0
  208. #endif
  209. #ifndef BOOST_INTEL_WIN
  210. #define BOOST_INTEL_WIN_WORKAROUND_GUARD 1
  211. #else
  212. #define BOOST_INTEL_WIN_WORKAROUND_GUARD 0
  213. #endif
  214. #ifndef BOOST_DINKUMWARE_STDLIB
  215. #define BOOST_DINKUMWARE_STDLIB_WORKAROUND_GUARD 1
  216. #else
  217. #define BOOST_DINKUMWARE_STDLIB_WORKAROUND_GUARD 0
  218. #endif
  219. #ifndef BOOST_INTEL
  220. #define BOOST_INTEL_WORKAROUND_GUARD 1
  221. #else
  222. #define BOOST_INTEL_WORKAROUND_GUARD 0
  223. #endif
  224. // Always define to zero, if it's used it'll be defined my MPL:
  225. #define BOOST_MPL_CFG_GCC_WORKAROUND_GUARD 0
  226. # define BOOST_WORKAROUND(symbol, test) \
  227. ((symbol ## _WORKAROUND_GUARD + 0 == 0) && \
  228. (symbol != 0) && (1 % (( (symbol test) ) + 1)))
  229. // ^ ^ ^ ^
  230. // The extra level of parenthesis nesting above, along with the
  231. // BOOST_OPEN_PAREN indirection below, is required to satisfy the
  232. // broken preprocessor in MWCW 8.3 and earlier.
  233. //
  234. // The basic mechanism works as follows:
  235. // (symbol test) + 1 => if (symbol test) then 2 else 1
  236. // 1 % ((symbol test) + 1) => if (symbol test) then 1 else 0
  237. //
  238. // The complication with % is for cooperation with BOOST_TESTED_AT().
  239. // When "test" is BOOST_TESTED_AT(x) and
  240. // BOOST_DETECT_OUTDATED_WORKAROUNDS is #defined,
  241. //
  242. // symbol test => if (symbol <= x) then 1 else -1
  243. // (symbol test) + 1 => if (symbol <= x) then 2 else 0
  244. // 1 % ((symbol test) + 1) => if (symbol <= x) then 1 else divide-by-zero
  245. //
  246. # ifdef BOOST_DETECT_OUTDATED_WORKAROUNDS
  247. # define BOOST_OPEN_PAREN (
  248. # define BOOST_TESTED_AT(value) > value) ?(-1): BOOST_OPEN_PAREN 1
  249. # else
  250. # define BOOST_TESTED_AT(value) != ((value)-(value))
  251. # endif
  252. # else
  253. # define BOOST_WORKAROUND(symbol, test) 0
  254. # endif
  255. #endif // WORKAROUND_DWA2002126_HPP