driver.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*=============================================================================
  2. Copyright (c) 2008 Dan Marsden
  3. Use modification and distribution are subject to the Boost Software
  4. License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ==============================================================================*/
  7. #if !defined(BOOST_FUSION_COMPILE_TIME_DRIVER)
  8. #define BOOST_FUSION_COMPILE_TIME_DRIVER
  9. int main()
  10. {
  11. test<0>();
  12. test<1>();
  13. test<2>();
  14. test<3>();
  15. test<4>();
  16. test<5>();
  17. test<6>();
  18. test<7>();
  19. test<8>();
  20. test<9>();
  21. test<10>();
  22. test<11>();
  23. test<12>();
  24. test<13>();
  25. test<14>();
  26. test<15>();
  27. test<16>();
  28. test<17>();
  29. test<18>();
  30. test<19>();
  31. test<20>();
  32. test<21>();
  33. test<22>();
  34. test<23>();
  35. test<24>();
  36. test<25>();
  37. test<26>();
  38. test<27>();
  39. test<28>();
  40. test<29>();
  41. test<30>();
  42. test<31>();
  43. test<32>();
  44. test<33>();
  45. test<34>();
  46. test<35>();
  47. test<36>();
  48. test<37>();
  49. test<38>();
  50. test<39>();
  51. test<40>();
  52. test<41>();
  53. test<42>();
  54. test<43>();
  55. test<44>();
  56. test<45>();
  57. test<46>();
  58. test<47>();
  59. test<48>();
  60. test<49>();
  61. }
  62. #endif