test_deduce_sequence.cpp 629 B

12345678910111213141516171819202122
  1. /*=============================================================================
  2. Copyright (c) 2009 Joel de Guzman
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #include <boost/mpl/vector.hpp>
  7. #include <boost/fusion/support.hpp>
  8. typedef boost::fusion::traits::deduce_sequence <
  9. boost::mpl::vector<int, char>
  10. >::type seq1_t;
  11. typedef boost::fusion::traits::deduce_sequence <
  12. boost::fusion::vector<int, char>
  13. >::type seq2_t;