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