forked from boostorg/fusion
ODR safe code
[SVN r35275]
This commit is contained in:
@ -13,6 +13,10 @@
|
||||
|
||||
namespace boost { namespace fusion
|
||||
{
|
||||
struct array_tag; // boost::array tag
|
||||
struct mpl_sequence_tag; // mpl sequence tag
|
||||
struct std_pair_tag; // std::pair tag
|
||||
|
||||
namespace extension
|
||||
{
|
||||
template <typename Tag>
|
||||
@ -21,6 +25,15 @@ namespace boost { namespace fusion
|
||||
template <typename Sequence, typename N>
|
||||
struct apply;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct value_at_impl<array_tag>;
|
||||
|
||||
template <>
|
||||
struct value_at_impl<mpl_sequence_tag>;
|
||||
|
||||
template <>
|
||||
struct value_at_impl<std_pair_tag>;
|
||||
}
|
||||
|
||||
namespace result_of
|
||||
|
Reference in New Issue
Block a user