From 7c8f9e3b6dbd3c6f2d1ba018cf5a09b55eb27796 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Sun, 16 Nov 2008 00:59:42 +0000 Subject: [PATCH] changed as_vector to return the numbered forms (i.e. vectorN) [SVN r49777] --- test/sequence/zip_view.cpp | 6 +++--- test/sequence/zip_view2.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/sequence/zip_view.cpp b/test/sequence/zip_view.cpp index 7f88f52a..8409711a 100644 --- a/test/sequence/zip_view.cpp +++ b/test/sequence/zip_view.cpp @@ -2,7 +2,7 @@ Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2006 Dan Marsden - Distributed under the Boost Software License, Version 1.0. (See accompanying + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include @@ -58,8 +58,8 @@ int main() BOOST_STATIC_ASSERT((boost::fusion::result_of::distance::type, boost::fusion::result_of::end::type>::value == 2)); - BOOST_MPL_ASSERT((boost::is_same::type, vector >)); - BOOST_MPL_ASSERT((boost::is_same::type>::type, vector >)); + BOOST_MPL_ASSERT((boost::is_same::type, vector2 >)); + BOOST_MPL_ASSERT((boost::is_same::type>::type, vector2 >)); } { using namespace boost; diff --git a/test/sequence/zip_view2.cpp b/test/sequence/zip_view2.cpp index 8a07aa88..38075f07 100644 --- a/test/sequence/zip_view2.cpp +++ b/test/sequence/zip_view2.cpp @@ -2,7 +2,7 @@ Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2006 Dan Marsden - Distributed under the Boost Software License, Version 1.0. (See accompanying + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include @@ -57,8 +57,8 @@ int main() BOOST_TEST(distance(begin(v), end(v)) == 2); BOOST_STATIC_ASSERT((boost::fusion::result_of::distance::type, boost::fusion::result_of::end::type>::value == 2)); - BOOST_MPL_ASSERT((boost::is_same::type, vector >)); - BOOST_MPL_ASSERT((boost::is_same::type>::type, vector >)); + BOOST_MPL_ASSERT((boost::is_same::type, vector3 >)); + BOOST_MPL_ASSERT((boost::is_same::type>::type, vector3 >)); } return boost::report_errors(); }