Boost logo

Boost-Commit :

From: tschwinger_at_[hidden]
Date: 2007-10-23 09:26:57


Author: t_schwinger
Date: 2007-10-23 09:26:56 EDT (Tue, 23 Oct 2007)
New Revision: 40355
URL: http://svn.boost.org/trac/boost/changeset/40355

Log:
adjusts test: deduce_sequence removes top-level cv-qualifiers from element types, now

Text files modified:
   trunk/libs/fusion/test/sequence/deduce_sequence.cpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/fusion/test/sequence/deduce_sequence.cpp
==============================================================================
--- trunk/libs/fusion/test/sequence/deduce_sequence.cpp (original)
+++ trunk/libs/fusion/test/sequence/deduce_sequence.cpp 2007-10-23 09:26:56 EDT (Tue, 23 Oct 2007)
@@ -35,7 +35,7 @@
 #define TEST_SAME_ELEMENTS(a,b) BOOST_TEST(( boost::mpl::equal< a, b >::type::value ))
 
 typedef fusion::vector<int, int const, int &, int const &> args1;
-typedef fusion::vector<int, int const, int &, int> storable1;
+typedef fusion::vector<int, int, int &, int> storable1;
 template struct test_seq_ctor<args1>;
 
 typedef fusion::vector< reference_wrapper<int> &, reference_wrapper<int const> &,
@@ -45,7 +45,7 @@
 
 
 typedef fusion::vector<int *, int const *, int const * const, int const * &, int const * const &> args3;
-typedef fusion::vector<int *, int const *, int const * const, int const * &, int const * > storable3;
+typedef fusion::vector<int *, int const *, int const *, int const * &, int const * > storable3;
 template struct test_seq_ctor<args3>;
 
 typedef fusion::vector<int(&)[2], int const(&)[2]> args4;


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