mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-17 14:22:13 +02:00
BOOST_FUSION_ADAPT_CLASS
[SVN r56576]
This commit is contained in:
16
test/sequence/test_deduce_sequence.cpp
Normal file
16
test/sequence/test_deduce_sequence.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
#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;
|
Reference in New Issue
Block a user