Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69665 - sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo
From: erwann.rogard_at_[hidden]
Date: 2011-03-07 20:46:27


Author: e_r
Date: 2011-03-07 20:46:26 EST (Mon, 07 Mar 2011)
New Revision: 69665
URL: http://svn.boost.org/trac/boost/changeset/69665

Log:
upd assign_v2
Removed:
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.cpp
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.h
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.cpp
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.h

Deleted: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.cpp 2011-03-07 20:46:26 EST (Mon, 07 Mar 2011)
+++ (empty file)
@@ -1,55 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-// Boost.Assign v2 //
-// //
-// Copyright (C) 2003-2004 Thorsten Ottosen //
-// Copyright (C) 2010 Erwann Rogard //
-// Use, modification and distribution are subject to 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 <list>
-#include <boost/mpl/vector/vector10.hpp>
-#include <boost/assign/v2/detail/functor/identity.hpp>
-#include <boost/assign/v2/detail/config/check.hpp>
-#include <boost/assign/v2/put/container.hpp>
-#include <boost/assign/v2/put/modulo/fun.hpp>
-#include <boost/assign/v2/put/modifier/push_front.hpp>
-#include <boost/assign/v2/put/pipe/functor.hpp>
-#include <boost/assign/v2/put/pipe/modulo/forward.hpp>
-
-#include <libs/assign/v2/test/put/pipe/modulo/forward.h>
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_pipe{
-namespace xxx_modulo{
-namespace xxx_forward{
-
- void test()
- {
- namespace as2 = boost::assign::v2;
- typedef int T; typedef std::list<T> C; C cont;
-
- typedef as2::functor_aux::identity f_;
- typedef as2::put_aux::modulo_fun<f_> par1_;
- typedef as2::put_aux::modulo_modifier<
- as2::put_aux::keyword_modifier,
- as2::modifier_tag::push_front
- > par2_;
- typedef ::boost::mpl::vector2<par1_, par2_> pars_;
-
- as2::put_pipe_aux::forward_pars<pars_>(
- as2::put( cont ),
- ( as2::_put % ( as2::_fun = as2::_identity ) % ( as2::_push_front ) ).pars()
- )( 1 )( 2 )( 3 );
- BOOST_ASSIGN_V2_CHECK( cont.size() == 3 );
- BOOST_ASSIGN_V2_CHECK( cont.front() == 3 ); cont.pop_front();
- BOOST_ASSIGN_V2_CHECK( cont.front() == 2 ); cont.pop_front();
- BOOST_ASSIGN_V2_CHECK( cont.front() == 1 ); cont.pop_front();
- }
-
-}// xxx_forward
-}// xxx_modulo
-}// xxx_pipe
-}// xxx_put
-}// xxx_test_assign

Deleted: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/forward.h 2011-03-07 20:46:26 EST (Mon, 07 Mar 2011)
+++ (empty file)
@@ -1,27 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-// Boost.Assign v2 //
-// //
-// Copyright (C) 2003-2004 Thorsten Ottosen //
-// Copyright (C) 2010 Erwann Rogard //
-// Use, modification and distribution are subject to 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) //
-//////////////////////////////////////////////////////////////////////////////
-#ifndef LIBS_ASSIGN_V2_TEST_PUT_PIPE_MODULO_FORWARD_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_PUT_PIPE_MODULO_FORWARD_ER_2010_H
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_pipe{
-namespace xxx_modulo{
-namespace xxx_forward{
-
- void test();
-
-}// xxx_forward
-}// xxx_modulo
-}// xxx_pipe
-}// xxx_put
-}// xxx_test_assign
-
-#endif

Deleted: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.cpp 2011-03-07 20:46:26 EST (Mon, 07 Mar 2011)
+++ (empty file)
@@ -1 +0,0 @@
-// TODO remove file
\ No newline at end of file

Deleted: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modulo/std.h 2011-03-07 20:46:26 EST (Mon, 07 Mar 2011)
+++ (empty file)
@@ -1 +0,0 @@
-// TODO remove file
\ No newline at end of file


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