mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
Spirit: fixing a container attribute handling problem
[SVN r70655]
This commit is contained in:
@@ -108,6 +108,14 @@ namespace boost { namespace spirit { namespace traits
|
||||
struct is_weak_substitute<optional<T>, optional<Expected> >
|
||||
: is_weak_substitute<T, Expected> {};
|
||||
|
||||
template <typename T, typename Expected>
|
||||
struct is_weak_substitute<optional<T>, Expected>
|
||||
: is_weak_substitute<T, Expected> {};
|
||||
|
||||
template <typename T, typename Expected>
|
||||
struct is_weak_substitute<T, optional<Expected> >
|
||||
: is_weak_substitute<T, Expected> {};
|
||||
|
||||
template <typename T, typename Expected>
|
||||
struct is_weak_substitute<T, Expected,
|
||||
typename enable_if<
|
||||
|
||||
Reference in New Issue
Block a user