• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
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 #include <boost/fusion/container/vector/vector.hpp>
8 #include <boost/fusion/container/vector/vector_iterator.hpp>
9 
10 #define FUSION_SEQUENCE vector
11 #define FUSION_TRAVERSAL_TAG random_access_traversal_tag
12 #include "./iterator.hpp"
13 
14 int
main()15 main()
16 {
17     test();
18     return boost::report_errors();
19 }
20 
21 
22 
23