• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2014 Kohei Takahashi
3 
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 
8 #include <boost/fusion/adapted/boost_tuple.hpp>
9 
10 #define FUSION_SEQUENCE boost::tuple
11 #define FUSION_TRAVERSAL_TAG forward_traversal_tag
12 #define FUSION_NO_PRIOR
13 #include "./iterator.hpp"
14 
15 int
main()16 main()
17 {
18     test();
19     return boost::report_errors();
20 }
21 
22