2
0
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:
Hartmut Kaiser
2011-03-28 02:10:42 +00:00
parent 751f493080
commit cd74cfba7e

View File

@@ -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<