• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 1999-2003 Jaakko Jarvi
3     Copyright (c) 2001-2011 Joel de Guzman
4 
5     Distributed under the Boost Software License, Version 1.0. (See accompanying
6     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #include <boost/fusion/tuple.hpp>
9 #include <boost/fusion/container/vector/convert.hpp>
10 #include <boost/fusion/adapted/mpl.hpp>
11 
12 #define FUSION_SEQUENCE tuple
13 #define FUSION_AT get
14 #define FUSION_SIZE tuple_size
15 #include "misc.hpp"
16 
17 int
main()18 main()
19 {
20     test();
21     return boost::report_errors();
22 }
23 
24