fix 1.46 showstopper, fix #5084

[SVN r68264]
This commit is contained in:
Eric Niebler
2011-01-19 04:28:17 +00:00
parent 94f5406936
commit aa30bad7e4
8 changed files with 31 additions and 33 deletions

View File

@ -1,7 +1,7 @@
/*=============================================================================
Copyright (c) 2001-2006 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(FUSION_IS_SEQUENCE_05052005_1002)
@ -63,6 +63,11 @@ namespace boost { namespace fusion
typename fusion::detail::tag_of<T>::type
>::template apply<T>
{};
template <typename Sequence, typename Enable = void>
struct is_native_fusion_sequence
: is_convertible<Sequence, detail::from_sequence_convertible_type>
{};
}
}}