From 4919faec58e8519dd2ef4c30680669c412d245a3 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Thu, 15 Nov 2007 21:15:47 +0000 Subject: [PATCH] removing failing test on EDG compilers [SVN r41117] --- test/sequence/filter_view.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/sequence/filter_view.cpp b/test/sequence/filter_view.cpp index 1abaedff..a89abec2 100644 --- a/test/sequence/filter_view.cpp +++ b/test/sequence/filter_view.cpp @@ -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 vector_type; typedef filter_view > > 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::value == 4); +#endif } {