forked from boostorg/fusion
ODR safe code
[SVN r35275]
This commit is contained in:
@ -19,6 +19,9 @@
|
||||
namespace boost { namespace fusion
|
||||
{
|
||||
struct random_access_traversal_tag;
|
||||
struct array_iterator_tag; // boost::array iterator tag
|
||||
struct mpl_iterator_tag; // mpl sequence iterator tag
|
||||
struct std_pair_iterator_tag; // std::pair iterator tag
|
||||
|
||||
namespace extension
|
||||
{
|
||||
@ -38,6 +41,15 @@ namespace boost { namespace fusion
|
||||
BOOST_MPL_ASSERT_NOT((is_same<category, random_access_traversal_tag>));
|
||||
};
|
||||
};
|
||||
|
||||
template <>
|
||||
struct advance_impl<array_iterator_tag>;
|
||||
|
||||
template <>
|
||||
struct advance_impl<mpl_iterator_tag>;
|
||||
|
||||
template <>
|
||||
struct advance_impl<std_pair_iterator_tag>;
|
||||
}
|
||||
|
||||
namespace result_of
|
||||
|
Reference in New Issue
Block a user