Boost logo

Boost-Commit :

From: danmarsden_at_[hidden]
Date: 2007-11-15 16:15:47


Author: danmarsden
Date: 2007-11-15 16:15:47 EST (Thu, 15 Nov 2007)
New Revision: 41117
URL: http://svn.boost.org/trac/boost/changeset/41117

Log:
removing failing test on EDG compilers
Text files modified:
   trunk/libs/fusion/test/sequence/filter_view.cpp | 2 ++
   1 files changed, 2 insertions(+), 0 deletions(-)

Modified: trunk/libs/fusion/test/sequence/filter_view.cpp
==============================================================================
--- trunk/libs/fusion/test/sequence/filter_view.cpp (original)
+++ trunk/libs/fusion/test/sequence/filter_view.cpp 2007-11-15 16:15:47 EST (Thu, 15 Nov 2007)
@@ -95,6 +95,7 @@
         // (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 @@
         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
     }
 
     {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk