config_test.cu 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. // This file was automatically generated on Wed Apr 18 20:03:40 2018
  2. // by libs/config/tools/generate.cpp
  3. // Copyright John Maddock 2002-4.
  4. // Use, modification and distribution are subject to the
  5. // Boost Software License, Version 1.0. (See accompanying file
  6. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. // See http://www.boost.org/libs/config for the most recent version.//
  8. // Revision $Id$
  9. //
  10. // Test file for config setup
  11. // This file should compile, if it does not then
  12. // one or more macros need to be defined.
  13. // see boost_*.ipp for more details
  14. // Do not edit this file, it was generated automatically by
  15. #include <boost/config.hpp>
  16. #include <iostream>
  17. #include "test.hpp"
  18. int error_count = 0;
  19. #ifndef BOOST_NO_ADL_BARRIER
  20. #include "boost_no_adl_barrier.ipp"
  21. #else
  22. namespace boost_no_adl_barrier = empty_boost;
  23. #endif
  24. #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
  25. #include "boost_no_arg_dep_lookup.ipp"
  26. #else
  27. namespace boost_no_argument_dependent_lookup = empty_boost;
  28. #endif
  29. #ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
  30. #include "boost_no_array_type_spec.ipp"
  31. #else
  32. namespace boost_no_array_type_specializations = empty_boost;
  33. #endif
  34. #ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS
  35. #include "boost_no_auto_declarations.ipp"
  36. #else
  37. namespace boost_no_cxx11_auto_declarations = empty_boost;
  38. #endif
  39. #ifndef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  40. #include "boost_no_auto_multidecl.ipp"
  41. #else
  42. namespace boost_no_cxx11_auto_multideclarations = empty_boost;
  43. #endif
  44. #ifndef BOOST_NO_AUTO_PTR
  45. #include "boost_no_auto_ptr.ipp"
  46. #else
  47. namespace boost_no_auto_ptr = empty_boost;
  48. #endif
  49. #ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
  50. #include "boost_no_bcb_partial_spec.ipp"
  51. #else
  52. namespace boost_bcb_partial_specialization_bug = empty_boost;
  53. #endif
  54. #ifndef BOOST_NO_CXX11_CHAR16_T
  55. #include "boost_no_char16_t.ipp"
  56. #else
  57. namespace boost_no_cxx11_char16_t = empty_boost;
  58. #endif
  59. #ifndef BOOST_NO_CXX11_CHAR32_T
  60. #include "boost_no_char32_t.ipp"
  61. #else
  62. namespace boost_no_cxx11_char32_t = empty_boost;
  63. #endif
  64. #ifndef BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  65. #include "boost_no_com_value_init.ipp"
  66. #else
  67. namespace boost_no_complete_value_initialization = empty_boost;
  68. #endif
  69. #ifndef BOOST_NO_CXX11_CONSTEXPR
  70. #include "boost_no_constexpr.ipp"
  71. #else
  72. namespace boost_no_cxx11_constexpr = empty_boost;
  73. #endif
  74. #ifndef BOOST_NO_CTYPE_FUNCTIONS
  75. #include "boost_no_ctype_functions.ipp"
  76. #else
  77. namespace boost_no_ctype_functions = empty_boost;
  78. #endif
  79. #ifndef BOOST_NO_CV_SPECIALIZATIONS
  80. #include "boost_no_cv_spec.ipp"
  81. #else
  82. namespace boost_no_cv_specializations = empty_boost;
  83. #endif
  84. #ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS
  85. #include "boost_no_cv_void_spec.ipp"
  86. #else
  87. namespace boost_no_cv_void_specializations = empty_boost;
  88. #endif
  89. #ifndef BOOST_NO_CWCHAR
  90. #include "boost_no_cwchar.ipp"
  91. #else
  92. namespace boost_no_cwchar = empty_boost;
  93. #endif
  94. #ifndef BOOST_NO_CWCTYPE
  95. #include "boost_no_cwctype.ipp"
  96. #else
  97. namespace boost_no_cwctype = empty_boost;
  98. #endif
  99. #ifndef BOOST_NO_CXX11_ADDRESSOF
  100. #include "boost_no_cxx11_addressof.ipp"
  101. #else
  102. namespace boost_no_cxx11_addressof = empty_boost;
  103. #endif
  104. #ifndef BOOST_NO_CXX11_ALIGNAS
  105. #include "boost_no_cxx11_alignas.ipp"
  106. #else
  107. namespace boost_no_cxx11_alignas = empty_boost;
  108. #endif
  109. #ifndef BOOST_NO_CXX11_ALLOCATOR
  110. #include "boost_no_cxx11_allocator.ipp"
  111. #else
  112. namespace boost_no_cxx11_allocator = empty_boost;
  113. #endif
  114. #ifndef BOOST_NO_CXX11_ATOMIC_SMART_PTR
  115. #include "boost_no_cxx11_atomic_sp.ipp"
  116. #else
  117. namespace boost_no_cxx11_atomic_smart_ptr = empty_boost;
  118. #endif
  119. #ifndef BOOST_NO_CXX11_DEFAULTED_MOVES
  120. #include "boost_no_cxx11_defaulted_moves.ipp"
  121. #else
  122. namespace boost_no_cxx11_defaulted_moves = empty_boost;
  123. #endif
  124. #ifndef BOOST_NO_CXX11_FINAL
  125. #include "boost_no_cxx11_final.ipp"
  126. #else
  127. namespace boost_no_cxx11_final = empty_boost;
  128. #endif
  129. #ifndef BOOST_NO_CXX11_HDR_ARRAY
  130. #include "boost_no_cxx11_hdr_array.ipp"
  131. #else
  132. namespace boost_no_cxx11_hdr_array = empty_boost;
  133. #endif
  134. #ifndef BOOST_NO_CXX11_HDR_ATOMIC
  135. #include "boost_no_cxx11_hdr_atomic.ipp"
  136. #else
  137. namespace boost_no_cxx11_hdr_atomic = empty_boost;
  138. #endif
  139. #ifndef BOOST_NO_CXX11_HDR_CHRONO
  140. #include "boost_no_cxx11_hdr_chrono.ipp"
  141. #else
  142. namespace boost_no_cxx11_hdr_chrono = empty_boost;
  143. #endif
  144. #ifndef BOOST_NO_CXX11_HDR_CODECVT
  145. #include "boost_no_cxx11_hdr_codecvt.ipp"
  146. #else
  147. namespace boost_no_cxx11_hdr_codecvt = empty_boost;
  148. #endif
  149. #ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  150. #include "boost_no_cxx11_hdr_condition_variable.ipp"
  151. #else
  152. namespace boost_no_cxx11_hdr_condition_variable = empty_boost;
  153. #endif
  154. #ifndef BOOST_NO_CXX11_HDR_FORWARD_LIST
  155. #include "boost_no_cxx11_hdr_forward_list.ipp"
  156. #else
  157. namespace boost_no_cxx11_hdr_forward_list = empty_boost;
  158. #endif
  159. #ifndef BOOST_NO_CXX11_HDR_FUTURE
  160. #include "boost_no_cxx11_hdr_future.ipp"
  161. #else
  162. namespace boost_no_cxx11_hdr_future = empty_boost;
  163. #endif
  164. #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  165. #include "boost_no_cxx11_hdr_initializer_list.ipp"
  166. #else
  167. namespace boost_no_cxx11_hdr_initializer_list = empty_boost;
  168. #endif
  169. #ifndef BOOST_NO_CXX11_HDR_MUTEX
  170. #include "boost_no_cxx11_hdr_mutex.ipp"
  171. #else
  172. namespace boost_no_cxx11_hdr_mutex = empty_boost;
  173. #endif
  174. #ifndef BOOST_NO_CXX11_HDR_RANDOM
  175. #include "boost_no_cxx11_hdr_random.ipp"
  176. #else
  177. namespace boost_no_cxx11_hdr_random = empty_boost;
  178. #endif
  179. #ifndef BOOST_NO_CXX11_HDR_RATIO
  180. #include "boost_no_cxx11_hdr_ratio.ipp"
  181. #else
  182. namespace boost_no_cxx11_hdr_ratio = empty_boost;
  183. #endif
  184. #ifndef BOOST_NO_CXX11_HDR_REGEX
  185. #include "boost_no_cxx11_hdr_regex.ipp"
  186. #else
  187. namespace boost_no_cxx11_hdr_regex = empty_boost;
  188. #endif
  189. #ifndef BOOST_NO_CXX11_HDR_SYSTEM_ERROR
  190. #include "boost_no_cxx11_hdr_system_error.ipp"
  191. #else
  192. namespace boost_no_cxx11_hdr_system_error = empty_boost;
  193. #endif
  194. #ifndef BOOST_NO_CXX11_HDR_THREAD
  195. #include "boost_no_cxx11_hdr_thread.ipp"
  196. #else
  197. namespace boost_no_cxx11_hdr_thread = empty_boost;
  198. #endif
  199. #ifndef BOOST_NO_CXX11_HDR_TUPLE
  200. #include "boost_no_cxx11_hdr_tuple.ipp"
  201. #else
  202. namespace boost_no_cxx11_hdr_tuple = empty_boost;
  203. #endif
  204. #ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS
  205. #include "boost_no_cxx11_hdr_type_traits.ipp"
  206. #else
  207. namespace boost_no_cxx11_hdr_type_traits = empty_boost;
  208. #endif
  209. #ifndef BOOST_NO_CXX11_HDR_TYPEINDEX
  210. #include "boost_no_cxx11_hdr_typeindex.ipp"
  211. #else
  212. namespace boost_no_cxx11_hdr_typeindex = empty_boost;
  213. #endif
  214. #ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP
  215. #include "boost_no_cxx11_hdr_unordered_map.ipp"
  216. #else
  217. namespace boost_no_cxx11_hdr_unordered_map = empty_boost;
  218. #endif
  219. #ifndef BOOST_NO_CXX11_HDR_UNORDERED_SET
  220. #include "boost_no_cxx11_hdr_unordered_set.ipp"
  221. #else
  222. namespace boost_no_cxx11_hdr_unordered_set = empty_boost;
  223. #endif
  224. #ifndef BOOST_NO_CXX11_INLINE_NAMESPACES
  225. #include "boost_no_cxx11_inline_namespaces.ipp"
  226. #else
  227. namespace boost_no_cxx11_inline_namespaces = empty_boost;
  228. #endif
  229. #ifndef BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS
  230. #include "boost_no_cxx11_non_pub_def_fun.ipp"
  231. #else
  232. namespace boost_no_cxx11_non_public_defaulted_functions = empty_boost;
  233. #endif
  234. #ifndef BOOST_NO_CXX11_NUMERIC_LIMITS
  235. #include "boost_no_cxx11_numeric_limits.ipp"
  236. #else
  237. namespace boost_no_cxx11_numeric_limits = empty_boost;
  238. #endif
  239. #ifndef BOOST_NO_CXX11_POINTER_TRAITS
  240. #include "boost_no_cxx11_pointer_traits.ipp"
  241. #else
  242. namespace boost_no_cxx11_pointer_traits = empty_boost;
  243. #endif
  244. #ifndef BOOST_NO_CXX11_REF_QUALIFIERS
  245. #include "boost_no_cxx11_ref_qualifiers.ipp"
  246. #else
  247. namespace boost_no_cxx11_ref_qualifiers = empty_boost;
  248. #endif
  249. #ifndef BOOST_NO_CXX11_SFINAE_EXPR
  250. #include "boost_no_cxx11_sfinae_expr.ipp"
  251. #else
  252. namespace boost_no_cxx11_sfinae_expr = empty_boost;
  253. #endif
  254. #ifndef BOOST_NO_CXX11_SMART_PTR
  255. #include "boost_no_cxx11_smart_ptr.ipp"
  256. #else
  257. namespace boost_no_cxx11_smart_ptr = empty_boost;
  258. #endif
  259. #ifndef BOOST_NO_CXX11_STD_ALIGN
  260. #include "boost_no_cxx11_std_align.ipp"
  261. #else
  262. namespace boost_no_cxx11_std_align = empty_boost;
  263. #endif
  264. #ifndef BOOST_NO_CXX11_THREAD_LOCAL
  265. #include "boost_no_cxx11_thread_local.ipp"
  266. #else
  267. namespace boost_no_cxx11_thread_local = empty_boost;
  268. #endif
  269. #ifndef BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  270. #include "boost_no_cxx11_trailing_result_types.ipp"
  271. #else
  272. namespace boost_no_cxx11_trailing_result_types = empty_boost;
  273. #endif
  274. #ifndef BOOST_NO_CXX11_USER_DEFINED_LITERALS
  275. #include "boost_no_cxx11_user_lit.ipp"
  276. #else
  277. namespace boost_no_cxx11_user_defined_literals = empty_boost;
  278. #endif
  279. #ifndef BOOST_NO_CXX14_BINARY_LITERALS
  280. #include "boost_no_cxx14_binary_literals.ipp"
  281. #else
  282. namespace boost_no_cxx14_binary_literals = empty_boost;
  283. #endif
  284. #ifndef BOOST_NO_CXX14_CONSTEXPR
  285. #include "boost_no_cxx14_constexpr.ipp"
  286. #else
  287. namespace boost_no_cxx14_constexpr = empty_boost;
  288. #endif
  289. #ifndef BOOST_NO_CXX14_DECLTYPE_AUTO
  290. #include "boost_no_cxx14_decltype_auto.ipp"
  291. #else
  292. namespace boost_no_cxx14_decltype_auto = empty_boost;
  293. #endif
  294. #ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS
  295. #include "boost_no_cxx14_digit_separator.ipp"
  296. #else
  297. namespace boost_no_cxx14_digit_separators = empty_boost;
  298. #endif
  299. #ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS
  300. #include "boost_no_cxx14_generic_lambda.ipp"
  301. #else
  302. namespace boost_no_cxx14_generic_lambdas = empty_boost;
  303. #endif
  304. #ifndef BOOST_NO_CXX14_HDR_SHARED_MUTEX
  305. #include "boost_no_cxx14_hdr_shared_mutex.ipp"
  306. #else
  307. namespace boost_no_cxx14_hdr_shared_mutex = empty_boost;
  308. #endif
  309. #ifndef BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  310. #include "boost_no_cxx14_lambda_capture.ipp"
  311. #else
  312. namespace boost_no_cxx14_initialized_lambda_captures = empty_boost;
  313. #endif
  314. #ifndef BOOST_NO_CXX14_AGGREGATE_NSDMI
  315. #include "boost_no_cxx14_member_init.ipp"
  316. #else
  317. namespace boost_no_cxx14_aggregate_nsdmi = empty_boost;
  318. #endif
  319. #ifndef BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  320. #include "boost_no_cxx14_return_type_ded.ipp"
  321. #else
  322. namespace boost_no_cxx14_return_type_deduction = empty_boost;
  323. #endif
  324. #ifndef BOOST_NO_CXX14_STD_EXCHANGE
  325. #include "boost_no_cxx14_std_exchange.ipp"
  326. #else
  327. namespace boost_no_cxx14_std_exchange = empty_boost;
  328. #endif
  329. #ifndef BOOST_NO_CXX14_VARIABLE_TEMPLATES
  330. #include "boost_no_cxx14_var_templ.ipp"
  331. #else
  332. namespace boost_no_cxx14_variable_templates = empty_boost;
  333. #endif
  334. #ifndef BOOST_NO_CXX17_FOLD_EXPRESSIONS
  335. #include "boost_no_cxx17_fold_expressions.ipp"
  336. #else
  337. namespace boost_no_cxx17_fold_expressions = empty_boost;
  338. #endif
  339. #ifndef BOOST_NO_CXX17_IF_CONSTEXPR
  340. #include "boost_no_cxx17_if_constexpr.ipp"
  341. #else
  342. namespace boost_no_cxx17_if_constexpr = empty_boost;
  343. #endif
  344. #ifndef BOOST_NO_CXX17_INLINE_VARIABLES
  345. #include "boost_no_cxx17_inline_variables.ipp"
  346. #else
  347. namespace boost_no_cxx17_inline_variables = empty_boost;
  348. #endif
  349. #ifndef BOOST_NO_CXX17_ITERATOR_TRAITS
  350. #include "boost_no_cxx17_iterator_traits.ipp"
  351. #else
  352. namespace boost_no_cxx17_iterator_traits = empty_boost;
  353. #endif
  354. #ifndef BOOST_NO_CXX17_STD_APPLY
  355. #include "boost_no_cxx17_std_apply.ipp"
  356. #else
  357. namespace boost_no_cxx17_std_apply = empty_boost;
  358. #endif
  359. #ifndef BOOST_NO_CXX17_STD_INVOKE
  360. #include "boost_no_cxx17_std_invoke.ipp"
  361. #else
  362. namespace boost_no_cxx17_std_invoke = empty_boost;
  363. #endif
  364. #ifndef BOOST_NO_CXX17_STRUCTURED_BINDINGS
  365. #include "boost_no_cxx17_structured_bindings.ipp"
  366. #else
  367. namespace boost_no_cxx17_structured_bindings = empty_boost;
  368. #endif
  369. #ifndef BOOST_NO_CXX98_BINDERS
  370. #include "boost_no_cxx98_binders.ipp"
  371. #else
  372. namespace boost_no_cxx98_binders = empty_boost;
  373. #endif
  374. #ifndef BOOST_NO_CXX98_FUNCTION_BASE
  375. #include "boost_no_cxx98_function_base.ipp"
  376. #else
  377. namespace boost_no_cxx98_function_base = empty_boost;
  378. #endif
  379. #ifndef BOOST_NO_CXX98_RANDOM_SHUFFLE
  380. #include "boost_no_cxx98_random_shuffle.ipp"
  381. #else
  382. namespace boost_no_cxx98_random_shuffle = empty_boost;
  383. #endif
  384. #ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL
  385. #include "boost_no_cxx_hdr_functional.ipp"
  386. #else
  387. namespace boost_no_cxx11_hdr_functional = empty_boost;
  388. #endif
  389. #ifndef BOOST_NO_CXX11_DECLTYPE
  390. #include "boost_no_decltype.ipp"
  391. #else
  392. namespace boost_no_cxx11_decltype = empty_boost;
  393. #endif
  394. #ifndef BOOST_NO_CXX11_DECLTYPE_N3276
  395. #include "boost_no_decltype_n3276.ipp"
  396. #else
  397. namespace boost_no_cxx11_decltype_n3276 = empty_boost;
  398. #endif
  399. #ifndef BOOST_DEDUCED_TYPENAME
  400. #include "boost_no_ded_typename.ipp"
  401. #else
  402. namespace boost_deduced_typename = empty_boost;
  403. #endif
  404. #ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  405. #include "boost_no_defaulted_functions.ipp"
  406. #else
  407. namespace boost_no_cxx11_defaulted_functions = empty_boost;
  408. #endif
  409. #ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS
  410. #include "boost_no_deleted_functions.ipp"
  411. #else
  412. namespace boost_no_cxx11_deleted_functions = empty_boost;
  413. #endif
  414. #ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
  415. #include "boost_no_dep_nested_class.ipp"
  416. #else
  417. namespace boost_no_dependent_nested_derivations = empty_boost;
  418. #endif
  419. #ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
  420. #include "boost_no_dep_val_param.ipp"
  421. #else
  422. namespace boost_no_dependent_types_in_template_value_parameters = empty_boost;
  423. #endif
  424. #ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE
  425. #include "boost_no_excep_std.ipp"
  426. #else
  427. namespace boost_no_exception_std_namespace = empty_boost;
  428. #endif
  429. #ifndef BOOST_NO_EXCEPTIONS
  430. #include "boost_no_exceptions.ipp"
  431. #else
  432. namespace boost_no_exceptions = empty_boost;
  433. #endif
  434. #ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
  435. #include "boost_no_exp_func_tem_arg.ipp"
  436. #else
  437. namespace boost_no_explicit_function_template_arguments = empty_boost;
  438. #endif
  439. #ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  440. #include "boost_no_explicit_cvt_ops.ipp"
  441. #else
  442. namespace boost_no_cxx11_explicit_conversion_operators = empty_boost;
  443. #endif
  444. #ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE
  445. #include "boost_no_extern_template.ipp"
  446. #else
  447. namespace boost_no_cxx11_extern_template = empty_boost;
  448. #endif
  449. #ifndef BOOST_NO_FENV_H
  450. #include "boost_no_fenv_h.ipp"
  451. #else
  452. namespace boost_no_fenv_h = empty_boost;
  453. #endif
  454. #ifndef BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS
  455. #include "boost_no_fixed_len_variadic_templates.ipp"
  456. #else
  457. namespace boost_no_cxx11_fixed_length_variadic_template_expansion_packs = empty_boost;
  458. #endif
  459. #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  460. #include "boost_no_func_tmp_order.ipp"
  461. #else
  462. namespace boost_no_function_template_ordering = empty_boost;
  463. #endif
  464. #ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  465. #include "boost_no_function_template_default_args.ipp"
  466. #else
  467. namespace boost_no_cxx11_function_template_default_args = empty_boost;
  468. #endif
  469. #ifndef BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
  470. #include "boost_no_function_type_spec.ipp"
  471. #else
  472. namespace boost_no_function_type_specializations = empty_boost;
  473. #endif
  474. #ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS
  475. #include "boost_no_i64_limits.ipp"
  476. #else
  477. namespace boost_no_ms_int64_numeric_limits = empty_boost;
  478. #endif
  479. #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  480. #include "boost_no_inline_memb_init.ipp"
  481. #else
  482. namespace boost_no_inclass_member_initialization = empty_boost;
  483. #endif
  484. #ifndef BOOST_NO_INTEGRAL_INT64_T
  485. #include "boost_no_integral_int64_t.ipp"
  486. #else
  487. namespace boost_no_integral_int64_t = empty_boost;
  488. #endif
  489. #ifndef BOOST_NO_IOSFWD
  490. #include "boost_no_iosfwd.ipp"
  491. #else
  492. namespace boost_no_iosfwd = empty_boost;
  493. #endif
  494. #ifndef BOOST_NO_IOSTREAM
  495. #include "boost_no_iostream.ipp"
  496. #else
  497. namespace boost_no_iostream = empty_boost;
  498. #endif
  499. #ifndef BOOST_NO_IS_ABSTRACT
  500. #include "boost_no_is_abstract.ipp"
  501. #else
  502. namespace boost_no_is_abstract = empty_boost;
  503. #endif
  504. #ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
  505. #include "boost_no_iter_construct.ipp"
  506. #else
  507. namespace boost_no_templated_iterator_constructors = empty_boost;
  508. #endif
  509. #ifndef BOOST_NO_CXX11_LAMBDAS
  510. #include "boost_no_lambdas.ipp"
  511. #else
  512. namespace boost_no_cxx11_lambdas = empty_boost;
  513. #endif
  514. #ifndef BOOST_NO_LIMITS
  515. #include "boost_no_limits.ipp"
  516. #else
  517. namespace boost_no_limits = empty_boost;
  518. #endif
  519. #ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
  520. #include "boost_no_limits_const_exp.ipp"
  521. #else
  522. namespace boost_no_limits_compile_time_constants = empty_boost;
  523. #endif
  524. #ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS
  525. #include "boost_no_ll_limits.ipp"
  526. #else
  527. namespace boost_no_long_long_numeric_limits = empty_boost;
  528. #endif
  529. #ifndef BOOST_NO_LONG_LONG
  530. #include "boost_no_long_long.ipp"
  531. #else
  532. namespace boost_no_long_long = empty_boost;
  533. #endif
  534. #ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
  535. #include "boost_no_mem_func_spec.ipp"
  536. #else
  537. namespace boost_no_member_function_specializations = empty_boost;
  538. #endif
  539. #ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD
  540. #include "boost_no_mem_tem_keyword.ipp"
  541. #else
  542. namespace boost_no_member_template_keyword = empty_boost;
  543. #endif
  544. #ifndef BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
  545. #include "boost_no_mem_tem_pnts.ipp"
  546. #else
  547. namespace boost_no_pointer_to_member_template_parameters = empty_boost;
  548. #endif
  549. #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  550. #include "boost_no_mem_templ_frnds.ipp"
  551. #else
  552. namespace boost_no_member_template_friends = empty_boost;
  553. #endif
  554. #ifndef BOOST_NO_MEMBER_TEMPLATES
  555. #include "boost_no_mem_templates.ipp"
  556. #else
  557. namespace boost_no_member_templates = empty_boost;
  558. #endif
  559. #ifndef BOOST_NO_NESTED_FRIENDSHIP
  560. #include "boost_no_nested_friendship.ipp"
  561. #else
  562. namespace boost_no_nested_friendship = empty_boost;
  563. #endif
  564. #ifndef BOOST_NO_CXX11_NOEXCEPT
  565. #include "boost_no_noexcept.ipp"
  566. #else
  567. namespace boost_no_cxx11_noexcept = empty_boost;
  568. #endif
  569. #ifndef BOOST_NO_CXX11_NULLPTR
  570. #include "boost_no_nullptr.ipp"
  571. #else
  572. namespace boost_no_cxx11_nullptr = empty_boost;
  573. #endif
  574. #ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
  575. #include "boost_no_ops_in_namespace.ipp"
  576. #else
  577. namespace boost_no_operators_in_namespace = empty_boost;
  578. #endif
  579. #ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
  580. #include "boost_no_part_spec_def_args.ipp"
  581. #else
  582. namespace boost_no_partial_specialization_implicit_default_args = empty_boost;
  583. #endif
  584. #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  585. #include "boost_no_partial_spec.ipp"
  586. #else
  587. namespace boost_no_template_partial_specialization = empty_boost;
  588. #endif
  589. #ifndef BOOST_NO_PRIVATE_IN_AGGREGATE
  590. #include "boost_no_priv_aggregate.ipp"
  591. #else
  592. namespace boost_no_private_in_aggregate = empty_boost;
  593. #endif
  594. #ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
  595. #include "boost_no_ptr_mem_const.ipp"
  596. #else
  597. namespace boost_no_pointer_to_member_const = empty_boost;
  598. #endif
  599. #ifndef BOOST_NO_CXX11_RANGE_BASED_FOR
  600. #include "boost_no_range_based_for.ipp"
  601. #else
  602. namespace boost_no_cxx11_range_based_for = empty_boost;
  603. #endif
  604. #ifndef BOOST_NO_CXX11_RAW_LITERALS
  605. #include "boost_no_raw_literals.ipp"
  606. #else
  607. namespace boost_no_cxx11_raw_literals = empty_boost;
  608. #endif
  609. #ifndef BOOST_NO_RESTRICT_REFERENCES
  610. #include "boost_no_restrict_references.ipp"
  611. #else
  612. namespace boost_no_restrict_references = empty_boost;
  613. #endif
  614. #ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION
  615. #include "boost_no_ret_det.ipp"
  616. #else
  617. namespace boost_no_unreachable_return_detection = empty_boost;
  618. #endif
  619. #ifndef BOOST_NO_RTTI
  620. #include "boost_no_rtti.ipp"
  621. #else
  622. namespace boost_no_rtti = empty_boost;
  623. #endif
  624. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  625. #include "boost_no_rvalue_references.ipp"
  626. #else
  627. namespace boost_no_cxx11_rvalue_references = empty_boost;
  628. #endif
  629. #ifndef BOOST_NO_CXX11_SCOPED_ENUMS
  630. #include "boost_no_scoped_enums.ipp"
  631. #else
  632. namespace boost_no_cxx11_scoped_enums = empty_boost;
  633. #endif
  634. #ifndef BOOST_NO_SFINAE
  635. #include "boost_no_sfinae.ipp"
  636. #else
  637. namespace boost_no_sfinae = empty_boost;
  638. #endif
  639. #ifndef BOOST_NO_SFINAE_EXPR
  640. #include "boost_no_sfinae_expr.ipp"
  641. #else
  642. namespace boost_no_sfinae_expr = empty_boost;
  643. #endif
  644. #ifndef BOOST_NO_STRINGSTREAM
  645. #include "boost_no_sstream.ipp"
  646. #else
  647. namespace boost_no_stringstream = empty_boost;
  648. #endif
  649. #ifndef BOOST_NO_CXX11_STATIC_ASSERT
  650. #include "boost_no_static_assert.ipp"
  651. #else
  652. namespace boost_no_cxx11_static_assert = empty_boost;
  653. #endif
  654. #ifndef BOOST_NO_STD_ALLOCATOR
  655. #include "boost_no_std_allocator.ipp"
  656. #else
  657. namespace boost_no_std_allocator = empty_boost;
  658. #endif
  659. #ifndef BOOST_NO_STD_DISTANCE
  660. #include "boost_no_std_distance.ipp"
  661. #else
  662. namespace boost_no_std_distance = empty_boost;
  663. #endif
  664. #ifndef BOOST_NO_STD_ITERATOR_TRAITS
  665. #include "boost_no_std_iter_traits.ipp"
  666. #else
  667. namespace boost_no_std_iterator_traits = empty_boost;
  668. #endif
  669. #ifndef BOOST_NO_STD_ITERATOR
  670. #include "boost_no_std_iterator.ipp"
  671. #else
  672. namespace boost_no_std_iterator = empty_boost;
  673. #endif
  674. #ifndef BOOST_NO_STD_LOCALE
  675. #include "boost_no_std_locale.ipp"
  676. #else
  677. namespace boost_no_std_locale = empty_boost;
  678. #endif
  679. #ifndef BOOST_NO_STD_MESSAGES
  680. #include "boost_no_std_messages.ipp"
  681. #else
  682. namespace boost_no_std_messages = empty_boost;
  683. #endif
  684. #ifndef BOOST_NO_STD_MIN_MAX
  685. #include "boost_no_std_min_max.ipp"
  686. #else
  687. namespace boost_no_std_min_max = empty_boost;
  688. #endif
  689. #ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
  690. #include "boost_no_std_oi_assign.ipp"
  691. #else
  692. namespace boost_no_std_output_iterator_assign = empty_boost;
  693. #endif
  694. #ifndef BOOST_NO_STD_TYPEINFO
  695. #include "boost_no_std_typeinfo.ipp"
  696. #else
  697. namespace boost_no_std_typeinfo = empty_boost;
  698. #endif
  699. #ifndef BOOST_NO_STD_USE_FACET
  700. #include "boost_no_std_use_facet.ipp"
  701. #else
  702. namespace boost_no_std_use_facet = empty_boost;
  703. #endif
  704. #ifndef BOOST_NO_STD_WSTREAMBUF
  705. #include "boost_no_std_wstreambuf.ipp"
  706. #else
  707. namespace boost_no_std_wstreambuf = empty_boost;
  708. #endif
  709. #ifndef BOOST_NO_STD_WSTRING
  710. #include "boost_no_std_wstring.ipp"
  711. #else
  712. namespace boost_no_std_wstring = empty_boost;
  713. #endif
  714. #ifndef BOOST_NO_STDC_NAMESPACE
  715. #include "boost_no_stdc_namespace.ipp"
  716. #else
  717. namespace boost_no_stdc_namespace = empty_boost;
  718. #endif
  719. #ifndef BOOST_NO_SWPRINTF
  720. #include "boost_no_swprintf.ipp"
  721. #else
  722. namespace boost_no_swprintf = empty_boost;
  723. #endif
  724. #ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  725. #include "boost_no_tem_local_classes.ipp"
  726. #else
  727. namespace boost_no_cxx11_local_class_template_parameters = empty_boost;
  728. #endif
  729. #ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES
  730. #include "boost_no_template_aliases.ipp"
  731. #else
  732. namespace boost_no_cxx11_template_aliases = empty_boost;
  733. #endif
  734. #ifndef BOOST_NO_TEMPLATED_IOSTREAMS
  735. #include "boost_no_template_streams.ipp"
  736. #else
  737. namespace boost_no_templated_iostreams = empty_boost;
  738. #endif
  739. #ifndef BOOST_NO_TEMPLATE_TEMPLATES
  740. #include "boost_no_template_template.ipp"
  741. #else
  742. namespace boost_no_template_templates = empty_boost;
  743. #endif
  744. #ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP
  745. #include "boost_no_two_phase_lookup.ipp"
  746. #else
  747. namespace boost_no_two_phase_name_lookup = empty_boost;
  748. #endif
  749. #ifndef BOOST_NO_TYPEID
  750. #include "boost_no_typeid.ipp"
  751. #else
  752. namespace boost_no_typeid = empty_boost;
  753. #endif
  754. #ifndef BOOST_NO_TYPENAME_WITH_CTOR
  755. #include "boost_no_typename_with_ctor.ipp"
  756. #else
  757. namespace boost_no_typename_with_ctor = empty_boost;
  758. #endif
  759. #ifndef BOOST_NO_CXX11_UNICODE_LITERALS
  760. #include "boost_no_unicode_literals.ipp"
  761. #else
  762. namespace boost_no_cxx11_unicode_literals = empty_boost;
  763. #endif
  764. #ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  765. #include "boost_no_unified_init.ipp"
  766. #else
  767. namespace boost_no_cxx11_unified_initialization_syntax = empty_boost;
  768. #endif
  769. #ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
  770. #include "boost_no_using_breaks_adl.ipp"
  771. #else
  772. namespace boost_function_scope_using_declaration_breaks_adl = empty_boost;
  773. #endif
  774. #ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
  775. #include "boost_no_using_decl_overld.ipp"
  776. #else
  777. namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost;
  778. #endif
  779. #ifndef BOOST_NO_USING_TEMPLATE
  780. #include "boost_no_using_template.ipp"
  781. #else
  782. namespace boost_no_using_template = empty_boost;
  783. #endif
  784. #ifndef BOOST_NO_CXX11_VARIADIC_MACROS
  785. #include "boost_no_variadic_macros.ipp"
  786. #else
  787. namespace boost_no_cxx11_variadic_macros = empty_boost;
  788. #endif
  789. #ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
  790. #include "boost_no_variadic_templates.ipp"
  791. #else
  792. namespace boost_no_cxx11_variadic_templates = empty_boost;
  793. #endif
  794. #ifndef BOOST_NO_VOID_RETURNS
  795. #include "boost_no_void_returns.ipp"
  796. #else
  797. namespace boost_no_void_returns = empty_boost;
  798. #endif
  799. #ifndef BOOST_NO_INTRINSIC_WCHAR_T
  800. #include "boost_no_wchar_t.ipp"
  801. #else
  802. namespace boost_no_intrinsic_wchar_t = empty_boost;
  803. #endif
  804. #ifdef BOOST_HAS_TWO_ARG_USE_FACET
  805. #include "boost_has_2arg_use_facet.ipp"
  806. #else
  807. namespace boost_has_two_arg_use_facet = empty_boost;
  808. #endif
  809. #ifdef BOOST_HAS_BETHREADS
  810. #include "boost_has_bethreads.ipp"
  811. #else
  812. namespace boost_has_bethreads = empty_boost;
  813. #endif
  814. #ifdef BOOST_HAS_CLOCK_GETTIME
  815. #include "boost_has_clock_gettime.ipp"
  816. #else
  817. namespace boost_has_clock_gettime = empty_boost;
  818. #endif
  819. #ifdef BOOST_HAS_PRAGMA_DETECT_MISMATCH
  820. #include "boost_has_detect_mismatch.ipp"
  821. #else
  822. namespace boost_has_pragma_detect_mismatch = empty_boost;
  823. #endif
  824. #ifdef BOOST_HAS_DIRENT_H
  825. #include "boost_has_dirent_h.ipp"
  826. #else
  827. namespace boost_has_dirent_h = empty_boost;
  828. #endif
  829. #ifdef BOOST_HAS_EXPM1
  830. #include "boost_has_expm1.ipp"
  831. #else
  832. namespace boost_has_expm1 = empty_boost;
  833. #endif
  834. #ifdef BOOST_HAS_FLOAT128
  835. #include "boost_has_float128.ipp"
  836. #else
  837. namespace boost_has_float128 = empty_boost;
  838. #endif
  839. #ifdef BOOST_HAS_FTIME
  840. #include "boost_has_ftime.ipp"
  841. #else
  842. namespace boost_has_ftime = empty_boost;
  843. #endif
  844. #ifdef BOOST_HAS_GETSYSTEMTIMEASFILETIME
  845. #include "boost_has_getsystemtimeasfiletime.ipp"
  846. #else
  847. namespace boost_has_getsystemtimeasfiletime = empty_boost;
  848. #endif
  849. #ifdef BOOST_HAS_GETTIMEOFDAY
  850. #include "boost_has_gettimeofday.ipp"
  851. #else
  852. namespace boost_has_gettimeofday = empty_boost;
  853. #endif
  854. #ifdef BOOST_HAS_HASH
  855. #include "boost_has_hash.ipp"
  856. #else
  857. namespace boost_has_hash = empty_boost;
  858. #endif
  859. #ifdef BOOST_HAS_INT128
  860. #include "boost_has_int128.ipp"
  861. #else
  862. namespace boost_has_int128 = empty_boost;
  863. #endif
  864. #ifdef BOOST_HAS_LOG1P
  865. #include "boost_has_log1p.ipp"
  866. #else
  867. namespace boost_has_log1p = empty_boost;
  868. #endif
  869. #ifdef BOOST_HAS_LONG_LONG
  870. #include "boost_has_long_long.ipp"
  871. #else
  872. namespace boost_has_long_long = empty_boost;
  873. #endif
  874. #ifdef BOOST_HAS_MACRO_USE_FACET
  875. #include "boost_has_macro_use_facet.ipp"
  876. #else
  877. namespace boost_has_macro_use_facet = empty_boost;
  878. #endif
  879. #ifdef BOOST_HAS_MS_INT64
  880. #include "boost_has_ms_int64.ipp"
  881. #else
  882. namespace boost_has_ms_int64 = empty_boost;
  883. #endif
  884. #ifdef BOOST_HAS_NANOSLEEP
  885. #include "boost_has_nanosleep.ipp"
  886. #else
  887. namespace boost_has_nanosleep = empty_boost;
  888. #endif
  889. #ifdef BOOST_HAS_NL_TYPES_H
  890. #include "boost_has_nl_types_h.ipp"
  891. #else
  892. namespace boost_has_nl_types_h = empty_boost;
  893. #endif
  894. #ifdef BOOST_HAS_NRVO
  895. #include "boost_has_nrvo.ipp"
  896. #else
  897. namespace boost_has_nrvo = empty_boost;
  898. #endif
  899. #ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR
  900. #include "boost_has_part_alloc.ipp"
  901. #else
  902. namespace boost_has_partial_std_allocator = empty_boost;
  903. #endif
  904. #ifdef BOOST_HAS_PTHREAD_DELAY_NP
  905. #include "boost_has_pthread_delay_np.ipp"
  906. #else
  907. namespace boost_has_pthread_delay_np = empty_boost;
  908. #endif
  909. #ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
  910. #include "boost_has_pthread_ma_st.ipp"
  911. #else
  912. namespace boost_has_pthread_mutexattr_settype = empty_boost;
  913. #endif
  914. #ifdef BOOST_HAS_PTHREAD_YIELD
  915. #include "boost_has_pthread_yield.ipp"
  916. #else
  917. namespace boost_has_pthread_yield = empty_boost;
  918. #endif
  919. #ifdef BOOST_HAS_PTHREADS
  920. #include "boost_has_pthreads.ipp"
  921. #else
  922. namespace boost_has_pthreads = empty_boost;
  923. #endif
  924. #ifdef BOOST_HAS_RVALUE_REFS
  925. #include "boost_has_rvalue_refs.ipp"
  926. #else
  927. namespace boost_has_rvalue_refs = empty_boost;
  928. #endif
  929. #ifdef BOOST_HAS_SCHED_YIELD
  930. #include "boost_has_sched_yield.ipp"
  931. #else
  932. namespace boost_has_sched_yield = empty_boost;
  933. #endif
  934. #ifdef BOOST_HAS_SGI_TYPE_TRAITS
  935. #include "boost_has_sgi_type_traits.ipp"
  936. #else
  937. namespace boost_has_sgi_type_traits = empty_boost;
  938. #endif
  939. #ifdef BOOST_HAS_SIGACTION
  940. #include "boost_has_sigaction.ipp"
  941. #else
  942. namespace boost_has_sigaction = empty_boost;
  943. #endif
  944. #ifdef BOOST_HAS_SLIST
  945. #include "boost_has_slist.ipp"
  946. #else
  947. namespace boost_has_slist = empty_boost;
  948. #endif
  949. #ifdef BOOST_HAS_STATIC_ASSERT
  950. #include "boost_has_static_assert.ipp"
  951. #else
  952. namespace boost_has_static_assert = empty_boost;
  953. #endif
  954. #ifdef BOOST_HAS_STDINT_H
  955. #include "boost_has_stdint_h.ipp"
  956. #else
  957. namespace boost_has_stdint_h = empty_boost;
  958. #endif
  959. #ifdef BOOST_HAS_STLP_USE_FACET
  960. #include "boost_has_stlp_use_facet.ipp"
  961. #else
  962. namespace boost_has_stlp_use_facet = empty_boost;
  963. #endif
  964. #ifdef BOOST_HAS_UNISTD_H
  965. #include "boost_has_unistd_h.ipp"
  966. #else
  967. namespace boost_has_unistd_h = empty_boost;
  968. #endif
  969. #ifdef BOOST_HAS_VARIADIC_TMPL
  970. #include "boost_has_variadic_tmpl.ipp"
  971. #else
  972. namespace boost_has_variadic_tmpl = empty_boost;
  973. #endif
  974. #ifdef BOOST_MSVC6_MEMBER_TEMPLATES
  975. #include "boost_has_vc6_mem_templ.ipp"
  976. #else
  977. namespace boost_msvc6_member_templates = empty_boost;
  978. #endif
  979. #ifdef BOOST_MSVC_STD_ITERATOR
  980. #include "boost_has_vc_iterator.ipp"
  981. #else
  982. namespace boost_msvc_std_iterator = empty_boost;
  983. #endif
  984. #ifdef BOOST_HAS_WINTHREADS
  985. #include "boost_has_winthreads.ipp"
  986. #else
  987. namespace boost_has_winthreads = empty_boost;
  988. #endif
  989. int main( int, char *[] )
  990. {
  991. if(0 != boost_has_two_arg_use_facet::test())
  992. {
  993. std::cerr << "Failed test for BOOST_HAS_TWO_ARG_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
  994. ++error_count;
  995. }
  996. if(0 != boost_has_bethreads::test())
  997. {
  998. std::cerr << "Failed test for BOOST_HAS_BETHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  999. ++error_count;
  1000. }
  1001. if(0 != boost_has_clock_gettime::test())
  1002. {
  1003. std::cerr << "Failed test for BOOST_HAS_CLOCK_GETTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1004. ++error_count;
  1005. }
  1006. if(0 != boost_has_pragma_detect_mismatch::test())
  1007. {
  1008. std::cerr << "Failed test for BOOST_HAS_PRAGMA_DETECT_MISMATCH at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1009. ++error_count;
  1010. }
  1011. if(0 != boost_has_dirent_h::test())
  1012. {
  1013. std::cerr << "Failed test for BOOST_HAS_DIRENT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1014. ++error_count;
  1015. }
  1016. if(0 != boost_has_expm1::test())
  1017. {
  1018. std::cerr << "Failed test for BOOST_HAS_EXPM1 at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1019. ++error_count;
  1020. }
  1021. if(0 != boost_has_float128::test())
  1022. {
  1023. std::cerr << "Failed test for BOOST_HAS_FLOAT128 at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1024. ++error_count;
  1025. }
  1026. if(0 != boost_has_ftime::test())
  1027. {
  1028. std::cerr << "Failed test for BOOST_HAS_FTIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1029. ++error_count;
  1030. }
  1031. if(0 != boost_has_getsystemtimeasfiletime::test())
  1032. {
  1033. std::cerr << "Failed test for BOOST_HAS_GETSYSTEMTIMEASFILETIME at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1034. ++error_count;
  1035. }
  1036. if(0 != boost_has_gettimeofday::test())
  1037. {
  1038. std::cerr << "Failed test for BOOST_HAS_GETTIMEOFDAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1039. ++error_count;
  1040. }
  1041. if(0 != boost_has_hash::test())
  1042. {
  1043. std::cerr << "Failed test for BOOST_HAS_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1044. ++error_count;
  1045. }
  1046. if(0 != boost_has_int128::test())
  1047. {
  1048. std::cerr << "Failed test for BOOST_HAS_INT128 at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1049. ++error_count;
  1050. }
  1051. if(0 != boost_has_log1p::test())
  1052. {
  1053. std::cerr << "Failed test for BOOST_HAS_LOG1P at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1054. ++error_count;
  1055. }
  1056. if(0 != boost_has_long_long::test())
  1057. {
  1058. std::cerr << "Failed test for BOOST_HAS_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1059. ++error_count;
  1060. }
  1061. if(0 != boost_has_macro_use_facet::test())
  1062. {
  1063. std::cerr << "Failed test for BOOST_HAS_MACRO_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1064. ++error_count;
  1065. }
  1066. if(0 != boost_has_ms_int64::test())
  1067. {
  1068. std::cerr << "Failed test for BOOST_HAS_MS_INT64 at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1069. ++error_count;
  1070. }
  1071. if(0 != boost_has_nanosleep::test())
  1072. {
  1073. std::cerr << "Failed test for BOOST_HAS_NANOSLEEP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1074. ++error_count;
  1075. }
  1076. if(0 != boost_has_nl_types_h::test())
  1077. {
  1078. std::cerr << "Failed test for BOOST_HAS_NL_TYPES_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1079. ++error_count;
  1080. }
  1081. if(0 != boost_has_nrvo::test())
  1082. {
  1083. std::cerr << "Failed test for BOOST_HAS_NRVO at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1084. ++error_count;
  1085. }
  1086. if(0 != boost_has_partial_std_allocator::test())
  1087. {
  1088. std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1089. ++error_count;
  1090. }
  1091. if(0 != boost_has_pthread_delay_np::test())
  1092. {
  1093. std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1094. ++error_count;
  1095. }
  1096. if(0 != boost_has_pthread_mutexattr_settype::test())
  1097. {
  1098. std::cerr << "Failed test for BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1099. ++error_count;
  1100. }
  1101. if(0 != boost_has_pthread_yield::test())
  1102. {
  1103. std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1104. ++error_count;
  1105. }
  1106. if(0 != boost_has_pthreads::test())
  1107. {
  1108. std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1109. ++error_count;
  1110. }
  1111. if(0 != boost_has_rvalue_refs::test())
  1112. {
  1113. std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1114. ++error_count;
  1115. }
  1116. if(0 != boost_has_sched_yield::test())
  1117. {
  1118. std::cerr << "Failed test for BOOST_HAS_SCHED_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1119. ++error_count;
  1120. }
  1121. if(0 != boost_has_sgi_type_traits::test())
  1122. {
  1123. std::cerr << "Failed test for BOOST_HAS_SGI_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1124. ++error_count;
  1125. }
  1126. if(0 != boost_has_sigaction::test())
  1127. {
  1128. std::cerr << "Failed test for BOOST_HAS_SIGACTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1129. ++error_count;
  1130. }
  1131. if(0 != boost_has_slist::test())
  1132. {
  1133. std::cerr << "Failed test for BOOST_HAS_SLIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1134. ++error_count;
  1135. }
  1136. if(0 != boost_has_static_assert::test())
  1137. {
  1138. std::cerr << "Failed test for BOOST_HAS_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1139. ++error_count;
  1140. }
  1141. if(0 != boost_has_stdint_h::test())
  1142. {
  1143. std::cerr << "Failed test for BOOST_HAS_STDINT_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1144. ++error_count;
  1145. }
  1146. if(0 != boost_has_stlp_use_facet::test())
  1147. {
  1148. std::cerr << "Failed test for BOOST_HAS_STLP_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1149. ++error_count;
  1150. }
  1151. if(0 != boost_has_unistd_h::test())
  1152. {
  1153. std::cerr << "Failed test for BOOST_HAS_UNISTD_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1154. ++error_count;
  1155. }
  1156. if(0 != boost_has_variadic_tmpl::test())
  1157. {
  1158. std::cerr << "Failed test for BOOST_HAS_VARIADIC_TMPL at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1159. ++error_count;
  1160. }
  1161. if(0 != boost_msvc6_member_templates::test())
  1162. {
  1163. std::cerr << "Failed test for BOOST_MSVC6_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1164. ++error_count;
  1165. }
  1166. if(0 != boost_msvc_std_iterator::test())
  1167. {
  1168. std::cerr << "Failed test for BOOST_MSVC_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1169. ++error_count;
  1170. }
  1171. if(0 != boost_has_winthreads::test())
  1172. {
  1173. std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1174. ++error_count;
  1175. }
  1176. if(0 != boost_no_adl_barrier::test())
  1177. {
  1178. std::cerr << "Failed test for BOOST_NO_ADL_BARRIER at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1179. ++error_count;
  1180. }
  1181. if(0 != boost_no_argument_dependent_lookup::test())
  1182. {
  1183. std::cerr << "Failed test for BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1184. ++error_count;
  1185. }
  1186. if(0 != boost_no_array_type_specializations::test())
  1187. {
  1188. std::cerr << "Failed test for BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1189. ++error_count;
  1190. }
  1191. if(0 != boost_no_cxx11_auto_declarations::test())
  1192. {
  1193. std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_DECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1194. ++error_count;
  1195. }
  1196. if(0 != boost_no_cxx11_auto_multideclarations::test())
  1197. {
  1198. std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1199. ++error_count;
  1200. }
  1201. if(0 != boost_no_auto_ptr::test())
  1202. {
  1203. std::cerr << "Failed test for BOOST_NO_AUTO_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1204. ++error_count;
  1205. }
  1206. if(0 != boost_bcb_partial_specialization_bug::test())
  1207. {
  1208. std::cerr << "Failed test for BOOST_BCB_PARTIAL_SPECIALIZATION_BUG at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1209. ++error_count;
  1210. }
  1211. if(0 != boost_no_cxx11_char16_t::test())
  1212. {
  1213. std::cerr << "Failed test for BOOST_NO_CXX11_CHAR16_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1214. ++error_count;
  1215. }
  1216. if(0 != boost_no_cxx11_char32_t::test())
  1217. {
  1218. std::cerr << "Failed test for BOOST_NO_CXX11_CHAR32_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1219. ++error_count;
  1220. }
  1221. if(0 != boost_no_complete_value_initialization::test())
  1222. {
  1223. std::cerr << "Failed test for BOOST_NO_COMPLETE_VALUE_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1224. ++error_count;
  1225. }
  1226. if(0 != boost_no_cxx11_constexpr::test())
  1227. {
  1228. std::cerr << "Failed test for BOOST_NO_CXX11_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1229. ++error_count;
  1230. }
  1231. if(0 != boost_no_ctype_functions::test())
  1232. {
  1233. std::cerr << "Failed test for BOOST_NO_CTYPE_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1234. ++error_count;
  1235. }
  1236. if(0 != boost_no_cv_specializations::test())
  1237. {
  1238. std::cerr << "Failed test for BOOST_NO_CV_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1239. ++error_count;
  1240. }
  1241. if(0 != boost_no_cv_void_specializations::test())
  1242. {
  1243. std::cerr << "Failed test for BOOST_NO_CV_VOID_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1244. ++error_count;
  1245. }
  1246. if(0 != boost_no_cwchar::test())
  1247. {
  1248. std::cerr << "Failed test for BOOST_NO_CWCHAR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1249. ++error_count;
  1250. }
  1251. if(0 != boost_no_cwctype::test())
  1252. {
  1253. std::cerr << "Failed test for BOOST_NO_CWCTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1254. ++error_count;
  1255. }
  1256. if(0 != boost_no_cxx11_addressof::test())
  1257. {
  1258. std::cerr << "Failed test for BOOST_NO_CXX11_ADDRESSOF at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1259. ++error_count;
  1260. }
  1261. if(0 != boost_no_cxx11_alignas::test())
  1262. {
  1263. std::cerr << "Failed test for BOOST_NO_CXX11_ALIGNAS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1264. ++error_count;
  1265. }
  1266. if(0 != boost_no_cxx11_allocator::test())
  1267. {
  1268. std::cerr << "Failed test for BOOST_NO_CXX11_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1269. ++error_count;
  1270. }
  1271. if(0 != boost_no_cxx11_atomic_smart_ptr::test())
  1272. {
  1273. std::cerr << "Failed test for BOOST_NO_CXX11_ATOMIC_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1274. ++error_count;
  1275. }
  1276. if(0 != boost_no_cxx11_defaulted_moves::test())
  1277. {
  1278. std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_MOVES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1279. ++error_count;
  1280. }
  1281. if(0 != boost_no_cxx11_final::test())
  1282. {
  1283. std::cerr << "Failed test for BOOST_NO_CXX11_FINAL at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1284. ++error_count;
  1285. }
  1286. if(0 != boost_no_cxx11_hdr_array::test())
  1287. {
  1288. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1289. ++error_count;
  1290. }
  1291. if(0 != boost_no_cxx11_hdr_atomic::test())
  1292. {
  1293. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ATOMIC at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1294. ++error_count;
  1295. }
  1296. if(0 != boost_no_cxx11_hdr_chrono::test())
  1297. {
  1298. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CHRONO at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1299. ++error_count;
  1300. }
  1301. if(0 != boost_no_cxx11_hdr_codecvt::test())
  1302. {
  1303. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CODECVT at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1304. ++error_count;
  1305. }
  1306. if(0 != boost_no_cxx11_hdr_condition_variable::test())
  1307. {
  1308. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CONDITION_VARIABLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1309. ++error_count;
  1310. }
  1311. if(0 != boost_no_cxx11_hdr_forward_list::test())
  1312. {
  1313. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FORWARD_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1314. ++error_count;
  1315. }
  1316. if(0 != boost_no_cxx11_hdr_future::test())
  1317. {
  1318. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUTURE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1319. ++error_count;
  1320. }
  1321. if(0 != boost_no_cxx11_hdr_initializer_list::test())
  1322. {
  1323. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_INITIALIZER_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1324. ++error_count;
  1325. }
  1326. if(0 != boost_no_cxx11_hdr_mutex::test())
  1327. {
  1328. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1329. ++error_count;
  1330. }
  1331. if(0 != boost_no_cxx11_hdr_random::test())
  1332. {
  1333. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1334. ++error_count;
  1335. }
  1336. if(0 != boost_no_cxx11_hdr_ratio::test())
  1337. {
  1338. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RATIO at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1339. ++error_count;
  1340. }
  1341. if(0 != boost_no_cxx11_hdr_regex::test())
  1342. {
  1343. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1344. ++error_count;
  1345. }
  1346. if(0 != boost_no_cxx11_hdr_system_error::test())
  1347. {
  1348. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_SYSTEM_ERROR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1349. ++error_count;
  1350. }
  1351. if(0 != boost_no_cxx11_hdr_thread::test())
  1352. {
  1353. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_THREAD at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1354. ++error_count;
  1355. }
  1356. if(0 != boost_no_cxx11_hdr_tuple::test())
  1357. {
  1358. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1359. ++error_count;
  1360. }
  1361. if(0 != boost_no_cxx11_hdr_type_traits::test())
  1362. {
  1363. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1364. ++error_count;
  1365. }
  1366. if(0 != boost_no_cxx11_hdr_typeindex::test())
  1367. {
  1368. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1369. ++error_count;
  1370. }
  1371. if(0 != boost_no_cxx11_hdr_unordered_map::test())
  1372. {
  1373. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1374. ++error_count;
  1375. }
  1376. if(0 != boost_no_cxx11_hdr_unordered_set::test())
  1377. {
  1378. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1379. ++error_count;
  1380. }
  1381. if(0 != boost_no_cxx11_inline_namespaces::test())
  1382. {
  1383. std::cerr << "Failed test for BOOST_NO_CXX11_INLINE_NAMESPACES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1384. ++error_count;
  1385. }
  1386. if(0 != boost_no_cxx11_non_public_defaulted_functions::test())
  1387. {
  1388. std::cerr << "Failed test for BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1389. ++error_count;
  1390. }
  1391. if(0 != boost_no_cxx11_numeric_limits::test())
  1392. {
  1393. std::cerr << "Failed test for BOOST_NO_CXX11_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1394. ++error_count;
  1395. }
  1396. if(0 != boost_no_cxx11_pointer_traits::test())
  1397. {
  1398. std::cerr << "Failed test for BOOST_NO_CXX11_POINTER_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1399. ++error_count;
  1400. }
  1401. if(0 != boost_no_cxx11_ref_qualifiers::test())
  1402. {
  1403. std::cerr << "Failed test for BOOST_NO_CXX11_REF_QUALIFIERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1404. ++error_count;
  1405. }
  1406. if(0 != boost_no_cxx11_sfinae_expr::test())
  1407. {
  1408. std::cerr << "Failed test for BOOST_NO_CXX11_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1409. ++error_count;
  1410. }
  1411. if(0 != boost_no_cxx11_smart_ptr::test())
  1412. {
  1413. std::cerr << "Failed test for BOOST_NO_CXX11_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1414. ++error_count;
  1415. }
  1416. if(0 != boost_no_cxx11_std_align::test())
  1417. {
  1418. std::cerr << "Failed test for BOOST_NO_CXX11_STD_ALIGN at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1419. ++error_count;
  1420. }
  1421. if(0 != boost_no_cxx11_thread_local::test())
  1422. {
  1423. std::cerr << "Failed test for BOOST_NO_CXX11_THREAD_LOCAL at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1424. ++error_count;
  1425. }
  1426. if(0 != boost_no_cxx11_trailing_result_types::test())
  1427. {
  1428. std::cerr << "Failed test for BOOST_NO_CXX11_TRAILING_RESULT_TYPES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1429. ++error_count;
  1430. }
  1431. if(0 != boost_no_cxx11_user_defined_literals::test())
  1432. {
  1433. std::cerr << "Failed test for BOOST_NO_CXX11_USER_DEFINED_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1434. ++error_count;
  1435. }
  1436. if(0 != boost_no_cxx14_binary_literals::test())
  1437. {
  1438. std::cerr << "Failed test for BOOST_NO_CXX14_BINARY_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1439. ++error_count;
  1440. }
  1441. if(0 != boost_no_cxx14_constexpr::test())
  1442. {
  1443. std::cerr << "Failed test for BOOST_NO_CXX14_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1444. ++error_count;
  1445. }
  1446. if(0 != boost_no_cxx14_decltype_auto::test())
  1447. {
  1448. std::cerr << "Failed test for BOOST_NO_CXX14_DECLTYPE_AUTO at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1449. ++error_count;
  1450. }
  1451. if(0 != boost_no_cxx14_digit_separators::test())
  1452. {
  1453. std::cerr << "Failed test for BOOST_NO_CXX14_DIGIT_SEPARATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1454. ++error_count;
  1455. }
  1456. if(0 != boost_no_cxx14_generic_lambdas::test())
  1457. {
  1458. std::cerr << "Failed test for BOOST_NO_CXX14_GENERIC_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1459. ++error_count;
  1460. }
  1461. if(0 != boost_no_cxx14_hdr_shared_mutex::test())
  1462. {
  1463. std::cerr << "Failed test for BOOST_NO_CXX14_HDR_SHARED_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1464. ++error_count;
  1465. }
  1466. if(0 != boost_no_cxx14_initialized_lambda_captures::test())
  1467. {
  1468. std::cerr << "Failed test for BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1469. ++error_count;
  1470. }
  1471. if(0 != boost_no_cxx14_aggregate_nsdmi::test())
  1472. {
  1473. std::cerr << "Failed test for BOOST_NO_CXX14_AGGREGATE_NSDMI at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1474. ++error_count;
  1475. }
  1476. if(0 != boost_no_cxx14_return_type_deduction::test())
  1477. {
  1478. std::cerr << "Failed test for BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1479. ++error_count;
  1480. }
  1481. if(0 != boost_no_cxx14_std_exchange::test())
  1482. {
  1483. std::cerr << "Failed test for BOOST_NO_CXX14_STD_EXCHANGE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1484. ++error_count;
  1485. }
  1486. if(0 != boost_no_cxx14_variable_templates::test())
  1487. {
  1488. std::cerr << "Failed test for BOOST_NO_CXX14_VARIABLE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1489. ++error_count;
  1490. }
  1491. if(0 != boost_no_cxx17_fold_expressions::test())
  1492. {
  1493. std::cerr << "Failed test for BOOST_NO_CXX17_FOLD_EXPRESSIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1494. ++error_count;
  1495. }
  1496. if(0 != boost_no_cxx17_if_constexpr::test())
  1497. {
  1498. std::cerr << "Failed test for BOOST_NO_CXX17_IF_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1499. ++error_count;
  1500. }
  1501. if(0 != boost_no_cxx17_inline_variables::test())
  1502. {
  1503. std::cerr << "Failed test for BOOST_NO_CXX17_INLINE_VARIABLES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1504. ++error_count;
  1505. }
  1506. if(0 != boost_no_cxx17_iterator_traits::test())
  1507. {
  1508. std::cerr << "Failed test for BOOST_NO_CXX17_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1509. ++error_count;
  1510. }
  1511. if(0 != boost_no_cxx17_std_apply::test())
  1512. {
  1513. std::cerr << "Failed test for BOOST_NO_CXX17_STD_APPLY at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1514. ++error_count;
  1515. }
  1516. if(0 != boost_no_cxx17_std_invoke::test())
  1517. {
  1518. std::cerr << "Failed test for BOOST_NO_CXX17_STD_INVOKE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1519. ++error_count;
  1520. }
  1521. if(0 != boost_no_cxx17_structured_bindings::test())
  1522. {
  1523. std::cerr << "Failed test for BOOST_NO_CXX17_STRUCTURED_BINDINGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1524. ++error_count;
  1525. }
  1526. if(0 != boost_no_cxx98_binders::test())
  1527. {
  1528. std::cerr << "Failed test for BOOST_NO_CXX98_BINDERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1529. ++error_count;
  1530. }
  1531. if(0 != boost_no_cxx98_function_base::test())
  1532. {
  1533. std::cerr << "Failed test for BOOST_NO_CXX98_FUNCTION_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1534. ++error_count;
  1535. }
  1536. if(0 != boost_no_cxx98_random_shuffle::test())
  1537. {
  1538. std::cerr << "Failed test for BOOST_NO_CXX98_RANDOM_SHUFFLE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1539. ++error_count;
  1540. }
  1541. if(0 != boost_no_cxx11_hdr_functional::test())
  1542. {
  1543. std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUNCTIONAL at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1544. ++error_count;
  1545. }
  1546. if(0 != boost_no_cxx11_decltype::test())
  1547. {
  1548. std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1549. ++error_count;
  1550. }
  1551. if(0 != boost_no_cxx11_decltype_n3276::test())
  1552. {
  1553. std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE_N3276 at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1554. ++error_count;
  1555. }
  1556. if(0 != boost_deduced_typename::test())
  1557. {
  1558. std::cerr << "Failed test for BOOST_DEDUCED_TYPENAME at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1559. ++error_count;
  1560. }
  1561. if(0 != boost_no_cxx11_defaulted_functions::test())
  1562. {
  1563. std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1564. ++error_count;
  1565. }
  1566. if(0 != boost_no_cxx11_deleted_functions::test())
  1567. {
  1568. std::cerr << "Failed test for BOOST_NO_CXX11_DELETED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1569. ++error_count;
  1570. }
  1571. if(0 != boost_no_dependent_nested_derivations::test())
  1572. {
  1573. std::cerr << "Failed test for BOOST_NO_DEPENDENT_NESTED_DERIVATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1574. ++error_count;
  1575. }
  1576. if(0 != boost_no_dependent_types_in_template_value_parameters::test())
  1577. {
  1578. std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1579. ++error_count;
  1580. }
  1581. if(0 != boost_no_exception_std_namespace::test())
  1582. {
  1583. std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1584. ++error_count;
  1585. }
  1586. if(0 != boost_no_exceptions::test())
  1587. {
  1588. std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1589. ++error_count;
  1590. }
  1591. if(0 != boost_no_explicit_function_template_arguments::test())
  1592. {
  1593. std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1594. ++error_count;
  1595. }
  1596. if(0 != boost_no_cxx11_explicit_conversion_operators::test())
  1597. {
  1598. std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1599. ++error_count;
  1600. }
  1601. if(0 != boost_no_cxx11_extern_template::test())
  1602. {
  1603. std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1604. ++error_count;
  1605. }
  1606. if(0 != boost_no_fenv_h::test())
  1607. {
  1608. std::cerr << "Failed test for BOOST_NO_FENV_H at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1609. ++error_count;
  1610. }
  1611. if(0 != boost_no_cxx11_fixed_length_variadic_template_expansion_packs::test())
  1612. {
  1613. std::cerr << "Failed test for BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1614. ++error_count;
  1615. }
  1616. if(0 != boost_no_function_template_ordering::test())
  1617. {
  1618. std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1619. ++error_count;
  1620. }
  1621. if(0 != boost_no_cxx11_function_template_default_args::test())
  1622. {
  1623. std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1624. ++error_count;
  1625. }
  1626. if(0 != boost_no_function_type_specializations::test())
  1627. {
  1628. std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1629. ++error_count;
  1630. }
  1631. if(0 != boost_no_ms_int64_numeric_limits::test())
  1632. {
  1633. std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1634. ++error_count;
  1635. }
  1636. if(0 != boost_no_inclass_member_initialization::test())
  1637. {
  1638. std::cerr << "Failed test for BOOST_NO_INCLASS_MEMBER_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1639. ++error_count;
  1640. }
  1641. if(0 != boost_no_integral_int64_t::test())
  1642. {
  1643. std::cerr << "Failed test for BOOST_NO_INTEGRAL_INT64_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1644. ++error_count;
  1645. }
  1646. if(0 != boost_no_iosfwd::test())
  1647. {
  1648. std::cerr << "Failed test for BOOST_NO_IOSFWD at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1649. ++error_count;
  1650. }
  1651. if(0 != boost_no_iostream::test())
  1652. {
  1653. std::cerr << "Failed test for BOOST_NO_IOSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1654. ++error_count;
  1655. }
  1656. if(0 != boost_no_is_abstract::test())
  1657. {
  1658. std::cerr << "Failed test for BOOST_NO_IS_ABSTRACT at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1659. ++error_count;
  1660. }
  1661. if(0 != boost_no_templated_iterator_constructors::test())
  1662. {
  1663. std::cerr << "Failed test for BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1664. ++error_count;
  1665. }
  1666. if(0 != boost_no_cxx11_lambdas::test())
  1667. {
  1668. std::cerr << "Failed test for BOOST_NO_CXX11_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1669. ++error_count;
  1670. }
  1671. if(0 != boost_no_limits::test())
  1672. {
  1673. std::cerr << "Failed test for BOOST_NO_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1674. ++error_count;
  1675. }
  1676. if(0 != boost_no_limits_compile_time_constants::test())
  1677. {
  1678. std::cerr << "Failed test for BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1679. ++error_count;
  1680. }
  1681. if(0 != boost_no_long_long_numeric_limits::test())
  1682. {
  1683. std::cerr << "Failed test for BOOST_NO_LONG_LONG_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1684. ++error_count;
  1685. }
  1686. if(0 != boost_no_long_long::test())
  1687. {
  1688. std::cerr << "Failed test for BOOST_NO_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1689. ++error_count;
  1690. }
  1691. if(0 != boost_no_member_function_specializations::test())
  1692. {
  1693. std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1694. ++error_count;
  1695. }
  1696. if(0 != boost_no_member_template_keyword::test())
  1697. {
  1698. std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1699. ++error_count;
  1700. }
  1701. if(0 != boost_no_pointer_to_member_template_parameters::test())
  1702. {
  1703. std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1704. ++error_count;
  1705. }
  1706. if(0 != boost_no_member_template_friends::test())
  1707. {
  1708. std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1709. ++error_count;
  1710. }
  1711. if(0 != boost_no_member_templates::test())
  1712. {
  1713. std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1714. ++error_count;
  1715. }
  1716. if(0 != boost_no_nested_friendship::test())
  1717. {
  1718. std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1719. ++error_count;
  1720. }
  1721. if(0 != boost_no_cxx11_noexcept::test())
  1722. {
  1723. std::cerr << "Failed test for BOOST_NO_CXX11_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1724. ++error_count;
  1725. }
  1726. if(0 != boost_no_cxx11_nullptr::test())
  1727. {
  1728. std::cerr << "Failed test for BOOST_NO_CXX11_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1729. ++error_count;
  1730. }
  1731. if(0 != boost_no_operators_in_namespace::test())
  1732. {
  1733. std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1734. ++error_count;
  1735. }
  1736. if(0 != boost_no_partial_specialization_implicit_default_args::test())
  1737. {
  1738. std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1739. ++error_count;
  1740. }
  1741. if(0 != boost_no_template_partial_specialization::test())
  1742. {
  1743. std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1744. ++error_count;
  1745. }
  1746. if(0 != boost_no_private_in_aggregate::test())
  1747. {
  1748. std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1749. ++error_count;
  1750. }
  1751. if(0 != boost_no_pointer_to_member_const::test())
  1752. {
  1753. std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_CONST at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1754. ++error_count;
  1755. }
  1756. if(0 != boost_no_cxx11_range_based_for::test())
  1757. {
  1758. std::cerr << "Failed test for BOOST_NO_CXX11_RANGE_BASED_FOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1759. ++error_count;
  1760. }
  1761. if(0 != boost_no_cxx11_raw_literals::test())
  1762. {
  1763. std::cerr << "Failed test for BOOST_NO_CXX11_RAW_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1764. ++error_count;
  1765. }
  1766. if(0 != boost_no_restrict_references::test())
  1767. {
  1768. std::cerr << "Failed test for BOOST_NO_RESTRICT_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1769. ++error_count;
  1770. }
  1771. if(0 != boost_no_unreachable_return_detection::test())
  1772. {
  1773. std::cerr << "Failed test for BOOST_NO_UNREACHABLE_RETURN_DETECTION at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1774. ++error_count;
  1775. }
  1776. if(0 != boost_no_rtti::test())
  1777. {
  1778. std::cerr << "Failed test for BOOST_NO_RTTI at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1779. ++error_count;
  1780. }
  1781. if(0 != boost_no_cxx11_rvalue_references::test())
  1782. {
  1783. std::cerr << "Failed test for BOOST_NO_CXX11_RVALUE_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1784. ++error_count;
  1785. }
  1786. if(0 != boost_no_cxx11_scoped_enums::test())
  1787. {
  1788. std::cerr << "Failed test for BOOST_NO_CXX11_SCOPED_ENUMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1789. ++error_count;
  1790. }
  1791. if(0 != boost_no_sfinae::test())
  1792. {
  1793. std::cerr << "Failed test for BOOST_NO_SFINAE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1794. ++error_count;
  1795. }
  1796. if(0 != boost_no_sfinae_expr::test())
  1797. {
  1798. std::cerr << "Failed test for BOOST_NO_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1799. ++error_count;
  1800. }
  1801. if(0 != boost_no_stringstream::test())
  1802. {
  1803. std::cerr << "Failed test for BOOST_NO_STRINGSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1804. ++error_count;
  1805. }
  1806. if(0 != boost_no_cxx11_static_assert::test())
  1807. {
  1808. std::cerr << "Failed test for BOOST_NO_CXX11_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1809. ++error_count;
  1810. }
  1811. if(0 != boost_no_std_allocator::test())
  1812. {
  1813. std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1814. ++error_count;
  1815. }
  1816. if(0 != boost_no_std_distance::test())
  1817. {
  1818. std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1819. ++error_count;
  1820. }
  1821. if(0 != boost_no_std_iterator_traits::test())
  1822. {
  1823. std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1824. ++error_count;
  1825. }
  1826. if(0 != boost_no_std_iterator::test())
  1827. {
  1828. std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1829. ++error_count;
  1830. }
  1831. if(0 != boost_no_std_locale::test())
  1832. {
  1833. std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1834. ++error_count;
  1835. }
  1836. if(0 != boost_no_std_messages::test())
  1837. {
  1838. std::cerr << "Failed test for BOOST_NO_STD_MESSAGES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1839. ++error_count;
  1840. }
  1841. if(0 != boost_no_std_min_max::test())
  1842. {
  1843. std::cerr << "Failed test for BOOST_NO_STD_MIN_MAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1844. ++error_count;
  1845. }
  1846. if(0 != boost_no_std_output_iterator_assign::test())
  1847. {
  1848. std::cerr << "Failed test for BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1849. ++error_count;
  1850. }
  1851. if(0 != boost_no_std_typeinfo::test())
  1852. {
  1853. std::cerr << "Failed test for BOOST_NO_STD_TYPEINFO at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1854. ++error_count;
  1855. }
  1856. if(0 != boost_no_std_use_facet::test())
  1857. {
  1858. std::cerr << "Failed test for BOOST_NO_STD_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1859. ++error_count;
  1860. }
  1861. if(0 != boost_no_std_wstreambuf::test())
  1862. {
  1863. std::cerr << "Failed test for BOOST_NO_STD_WSTREAMBUF at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1864. ++error_count;
  1865. }
  1866. if(0 != boost_no_std_wstring::test())
  1867. {
  1868. std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1869. ++error_count;
  1870. }
  1871. if(0 != boost_no_stdc_namespace::test())
  1872. {
  1873. std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1874. ++error_count;
  1875. }
  1876. if(0 != boost_no_swprintf::test())
  1877. {
  1878. std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1879. ++error_count;
  1880. }
  1881. if(0 != boost_no_cxx11_local_class_template_parameters::test())
  1882. {
  1883. std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1884. ++error_count;
  1885. }
  1886. if(0 != boost_no_cxx11_template_aliases::test())
  1887. {
  1888. std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1889. ++error_count;
  1890. }
  1891. if(0 != boost_no_templated_iostreams::test())
  1892. {
  1893. std::cerr << "Failed test for BOOST_NO_TEMPLATED_IOSTREAMS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1894. ++error_count;
  1895. }
  1896. if(0 != boost_no_template_templates::test())
  1897. {
  1898. std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1899. ++error_count;
  1900. }
  1901. if(0 != boost_no_two_phase_name_lookup::test())
  1902. {
  1903. std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1904. ++error_count;
  1905. }
  1906. if(0 != boost_no_typeid::test())
  1907. {
  1908. std::cerr << "Failed test for BOOST_NO_TYPEID at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1909. ++error_count;
  1910. }
  1911. if(0 != boost_no_typename_with_ctor::test())
  1912. {
  1913. std::cerr << "Failed test for BOOST_NO_TYPENAME_WITH_CTOR at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1914. ++error_count;
  1915. }
  1916. if(0 != boost_no_cxx11_unicode_literals::test())
  1917. {
  1918. std::cerr << "Failed test for BOOST_NO_CXX11_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1919. ++error_count;
  1920. }
  1921. if(0 != boost_no_cxx11_unified_initialization_syntax::test())
  1922. {
  1923. std::cerr << "Failed test for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1924. ++error_count;
  1925. }
  1926. if(0 != boost_function_scope_using_declaration_breaks_adl::test())
  1927. {
  1928. std::cerr << "Failed test for BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1929. ++error_count;
  1930. }
  1931. if(0 != boost_no_using_declaration_overloads_from_typename_base::test())
  1932. {
  1933. std::cerr << "Failed test for BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1934. ++error_count;
  1935. }
  1936. if(0 != boost_no_using_template::test())
  1937. {
  1938. std::cerr << "Failed test for BOOST_NO_USING_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1939. ++error_count;
  1940. }
  1941. if(0 != boost_no_cxx11_variadic_macros::test())
  1942. {
  1943. std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_MACROS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1944. ++error_count;
  1945. }
  1946. if(0 != boost_no_cxx11_variadic_templates::test())
  1947. {
  1948. std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1949. ++error_count;
  1950. }
  1951. if(0 != boost_no_void_returns::test())
  1952. {
  1953. std::cerr << "Failed test for BOOST_NO_VOID_RETURNS at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1954. ++error_count;
  1955. }
  1956. if(0 != boost_no_intrinsic_wchar_t::test())
  1957. {
  1958. std::cerr << "Failed test for BOOST_NO_INTRINSIC_WCHAR_T at: " << __FILE__ << ":" << __LINE__ << std::endl;
  1959. ++error_count;
  1960. }
  1961. return error_count;
  1962. }