Index: fusion.hpp =================================================================== --- fusion.hpp (revision 67336) +++ fusion.hpp (working copy) @@ -249,7 +249,27 @@ { namespace extension { + template + struct is_sequence_impl; + template<> + struct is_sequence_impl + { + template + struct apply + : mpl::true_ + {}; + }; + + template<> + struct is_sequence_impl + { + template + struct apply + : mpl::true_ + {}; + }; + template struct is_view_impl;