forked from boostorg/fusion
removing failing test on EDG compilers
[SVN r41117]
This commit is contained in:
@ -95,6 +95,7 @@ main()
|
|||||||
// (e.g. comeau 4.3.3, intel) have problems with this.
|
// (e.g. comeau 4.3.3, intel) have problems with this.
|
||||||
// vc7.1 and g++ are ok. The errors from comeau are useless.
|
// 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 vector_c<int, 5, 1, 2, 3, 6, 0, -1> vector_type;
|
||||||
typedef filter_view<vector_type const, less<_, int_<3> > > filter_view_type;
|
typedef filter_view<vector_type const, less<_, int_<3> > > filter_view_type;
|
||||||
vector_type v;
|
vector_type v;
|
||||||
@ -102,6 +103,7 @@ main()
|
|||||||
std::cout << view << std::endl;
|
std::cout << view << std::endl;
|
||||||
BOOST_TEST((view == make_vector(1, 2, 0, -1)));
|
BOOST_TEST((view == make_vector(1, 2, 0, -1)));
|
||||||
BOOST_STATIC_ASSERT(result_of::size<filter_view_type>::value == 4);
|
BOOST_STATIC_ASSERT(result_of::size<filter_view_type>::value == 4);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user