diff --git a/test/is_sequence.cpp b/test/is_sequence.cpp index f46d37c..05fe23f 100644 --- a/test/is_sequence.cpp +++ b/test/is_sequence.cpp @@ -19,6 +19,7 @@ #include "boost/mpl/range_c.hpp" #include "boost/mpl/is_sequence.hpp" #include "boost/static_assert.hpp" +#include using namespace boost::mpl; @@ -26,6 +27,7 @@ struct UDT {}; int main() { + BOOST_STATIC_ASSERT(!is_sequence< std::vector >::value); BOOST_STATIC_ASSERT(!is_sequence< int >::value); BOOST_STATIC_ASSERT(!is_sequence< int& >::value); BOOST_STATIC_ASSERT(!is_sequence< UDT >::value);