removing failing test on EDG compilers

[SVN r41117]
This commit is contained in:
Dan Marsden
2007-11-15 21:15:47 +00:00
parent d785c34d56
commit 4919faec58

View File

@ -95,6 +95,7 @@ main()
// (e.g. comeau 4.3.3, intel) have problems with this.
// vc7.1 and g++ are ok. The errors from comeau are useless.
#ifndef __EDG_VERSION__
typedef vector_c<int, 5, 1, 2, 3, 6, 0, -1> vector_type;
typedef filter_view<vector_type const, less<_, int_<3> > > filter_view_type;
vector_type v;
@ -102,6 +103,7 @@ main()
std::cout << view << std::endl;
BOOST_TEST((view == make_vector(1, 2, 0, -1)));
BOOST_STATIC_ASSERT(result_of::size<filter_view_type>::value == 4);
#endif
}
{