tuple_tie.cpp 626 B

12345678910111213141516171819202122
  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. #define FUSION_SEQUENCE tuple
  9. #define FUSION_AT get
  10. #define FUSION_MAKE make_tuple
  11. #define FUSION_TIE tie
  12. #include "tie.hpp"
  13. int
  14. main()
  15. {
  16. test();
  17. return boost::report_errors();
  18. }