mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-30 20:47:31 +02:00
Added adapter for std::tuple (only for implementations using variadic templates)
[SVN r74788]
This commit is contained in:
@ -21,6 +21,7 @@ namespace boost { namespace fusion
|
|||||||
struct boost_array_tag; // boost::array tag
|
struct boost_array_tag; // boost::array tag
|
||||||
struct mpl_sequence_tag; // mpl sequence tag
|
struct mpl_sequence_tag; // mpl sequence tag
|
||||||
struct std_pair_tag; // std::pair tag
|
struct std_pair_tag; // std::pair tag
|
||||||
|
struct std_tuple_tag; // std::tuple tag
|
||||||
|
|
||||||
namespace extension
|
namespace extension
|
||||||
{
|
{
|
||||||
@ -49,6 +50,9 @@ namespace boost { namespace fusion
|
|||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct at_impl<std_pair_tag>;
|
struct at_impl<std_pair_tag>;
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct at_impl<std_tuple_tag>;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace result_of
|
namespace result_of
|
||||||
|
Reference in New Issue
Block a user