tuple_misc.cpp 697 B

1234567891011121314151617181920212223
  1. /*=============================================================================
  2. Copyright (c) 1999-2003 Jaakko Jarvi
  3. Copyright (c) 2001-2011 Joel de Guzman
  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/tuple.hpp>
  8. #include <boost/fusion/container/vector/convert.hpp>
  9. #include <boost/fusion/adapted/mpl.hpp>
  10. #define FUSION_SEQUENCE tuple
  11. #define FUSION_AT get
  12. #define FUSION_SIZE tuple_size
  13. #include "misc.hpp"
  14. int
  15. main()
  16. {
  17. test();
  18. return boost::report_errors();
  19. }