mirror of
https://github.com/boostorg/fusion.git
synced 2026-07-04 23:50:56 +02:00
9a1bc7d677
[SVN r56576]
17 lines
273 B
C++
17 lines
273 B
C++
|
|
#include <boost/mpl/vector.hpp>
|
|
#include <boost/fusion/support.hpp>
|
|
|
|
typedef boost::fusion::traits::deduce_sequence <
|
|
|
|
boost::mpl::vector<int, char>
|
|
|
|
>::type seq1_t;
|
|
|
|
|
|
typedef boost::fusion::traits::deduce_sequence <
|
|
|
|
boost::fusion::vector<int, char>
|
|
|
|
>::type seq2_t;
|