• 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/container/vector/vector.hpp>
9 #include <boost/fusion/container/generation/vector_tie.hpp>
10 #include <boost/fusion/container/generation/ignore.hpp>
11 #include <boost/fusion/container/generation/make_vector.hpp>
12 
13 #define FUSION_SEQUENCE vector
14 #include "tie.hpp"
15 
16 int
main()17 main()
18 {
19     test();
20     return boost::report_errors();
21 }
22 
23