remove bogus compile-time asserts

[SVN r73583]
This commit is contained in:
Eric Niebler
2011-08-07 00:06:32 +00:00
parent adc8be256f
commit 491b6fb7d8

View File

@ -34,10 +34,7 @@ namespace boost { namespace fusion
// default implementation
template <typename First, typename Last>
struct apply : distance_detail::linear_distance<First, Last>
{
BOOST_MPL_ASSERT_NOT((traits::is_random_access<First>));
BOOST_MPL_ASSERT_NOT((traits::is_random_access<Last>));
};
{};
};
template <>