Workaround for MSVC8.0

I'm not sure why it doesn't compile...
This commit is contained in:
Kohei Takahashi
2014-11-26 01:49:07 +09:00
parent 9ab7774fd7
commit fbbfc16d2d

View File

@ -32,7 +32,7 @@ namespace boost { namespace fusion
{
template <typename Sequence>
struct apply
: is_convertible<Sequence, detail::from_sequence_convertible_type>
: is_convertible<Sequence, fusion::detail::from_sequence_convertible_type>
{};
};
@ -69,7 +69,7 @@ namespace boost { namespace fusion
template <typename Sequence, typename Enable = void>
struct is_native_fusion_sequence
: is_convertible<Sequence, detail::from_sequence_convertible_type>
: is_convertible<Sequence, fusion::detail::from_sequence_convertible_type>
{};
}
}}