• 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 
10 #define FUSION_SEQUENCE tuple
11 #define FUSION_AT get
12 #define FUSION_VALUE_AT(S, N) tuple_element<N, S>
13 #include "value_at.hpp"
14 
15 int
main()16 main()
17 {
18     test();
19     return boost::report_errors();
20 }
21 
22