forked from boostorg/fusion
Merge pull request #85 from Flast/feature/no_bounds_sequence
Feature/no bounds sequence
This commit is contained in:
@ -36,6 +36,8 @@ namespace boost { namespace fusion
|
||||
|
||||
struct associative_tag {};
|
||||
|
||||
struct unbounded_tag {};
|
||||
|
||||
namespace extension
|
||||
{
|
||||
template<typename Tag>
|
||||
@ -107,6 +109,13 @@ namespace boost { namespace fusion
|
||||
random_access_traversal_tag
|
||||
, typename category_of<T>::type>
|
||||
{};
|
||||
|
||||
template <typename T>
|
||||
struct is_unbounded
|
||||
: is_base_of<
|
||||
unbounded_tag
|
||||
, typename category_of<T>::type>
|
||||
{};
|
||||
}
|
||||
}}
|
||||
|
||||
|
Reference in New Issue
Block a user