Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64712 - sandbox/statistics/support/libs/assign/v2/test/put
From: erwann.rogard_at_[hidden]
Date: 2010-08-09 17:21:40


Author: e_r
Date: 2010-08-09 17:21:39 EDT (Mon, 09 Aug 2010)
New Revision: 64712
URL: http://svn.boost.org/trac/boost/changeset/64712

Log:
/test organizational change
Removed:
   sandbox/statistics/support/libs/assign/v2/test/put/modifier.cpp
   sandbox/statistics/support/libs/assign/v2/test/put/modifier.h
   sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.cpp
   sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.h

Deleted: sandbox/statistics/support/libs/assign/v2/test/put/modifier.cpp
==============================================================================
--- sandbox/statistics/support/libs/assign/v2/test/put/modifier.cpp 2010-08-09 17:21:39 EDT (Mon, 09 Aug 2010)
+++ (empty file)
@@ -1,82 +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) //
-//////////////////////////////////////////////////////////////////////////////
-
-// TODO : the forward declarations are not sufficient as the default
-// arguments aren't specified. If they were, redefinition error. Is there
-// a better way?
-#include <deque>
-#include <list>
-#include <map>
-#include <queue>
-#include <set>
-#include <stack>
-#include <vector>
-#include <boost/array.hpp>
-
-#include <boost/ptr_container/ptr_array.hpp>
-#include <boost/ptr_container/ptr_deque.hpp>
-#include <boost/ptr_container/ptr_list.hpp>
-#include <boost/ptr_container/ptr_vector.hpp>
-
-#include <boost/preprocessor/punctuation/comma_if.hpp>
-#include <boost/preprocessor/control/expr_if.hpp>
-#include <boost/assign/v2/detail/checking/assert.hpp>
-#include <boost/assign/v2/put/modifier/modifier.hpp>
-#include <libs/assign/v2/test/put/modifier.h>
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_modifier{
-
-#define LIBS_ASSIGN_V2_TEST_PUT_modifier( V, T0, T1, n )\
- { \
- typedef V< T0 BOOST_PP_COMMA_IF(n) BOOST_PP_EXPR_IF(n, T1) > cont_; \
- typedef put_aux::deduce_modifier<cont_>::type found_; \
- checking::do_assert_is_same<found_,wanted_>(); \
- } \
-/**/
-
- void test()
- {
- using namespace boost::assign::v2;
- {
- typedef put_tag::push_back wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::list, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::vector, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::deque, int, , 0 )
-
- LIBS_ASSIGN_V2_TEST_PUT_modifier( boost::ptr_deque, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( boost::ptr_list, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( boost::ptr_vector, int, , 0 )
- }
- {
- typedef put_tag::at_next wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_modifier( boost::array, int, 1, 1 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( boost::ptr_array, int, 1, 1 )
- }
- {
- typedef put_tag::push wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::queue, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::stack, int, , 0 )
- }
- {
- typedef put_tag::insert wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::set, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_modifier( std::map, const char*, int, 1 )
- }
-
- }
-
-#undef LIBS_ASSIGN_V2_TEST_PUT_modifier
-
-}// xxx_modifier
-}// xxx_put
-}// test_assign_v2
-

Deleted: sandbox/statistics/support/libs/assign/v2/test/put/modifier.h
==============================================================================
--- sandbox/statistics/support/libs/assign/v2/test/put/modifier.h 2010-08-09 17:21:39 EDT (Mon, 09 Aug 2010)
+++ (empty file)
@@ -1,23 +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 BOOST_ASSIGN_V2_CHAIN_TEST_PUT_MODIFIER_ER_2010_H
-#define BOOST_ASSIGN_V2_CHAIN_TEST_PUT_MODIFIER_ER_2010_H
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_modifier{
-
- void test();
-
-}// xxx_modifier
-}// xxx_put
-}// xxx_test_assign
-
-#endif

Deleted: sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.cpp
==============================================================================
--- sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.cpp 2010-08-09 17:21:39 EDT (Mon, 09 Aug 2010)
+++ (empty file)
@@ -1,35 +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 <deque>
-#include <queue>
-#include <vector>
-#include <map>
-#include <boost/array.hpp>
-#include <boost/tuple/tuple.hpp>
-#include <boost/assign/v2/detail/checking/container.hpp>
-#include <boost/assign/v2/detail/checking/constants.hpp>
-#include <boost/assign/v2/put/put.hpp>
-#include <libs/assign/v2/test/put/put_wrapper.h>
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_put_wrapper{
-
- void test()
- {
- // TODO remove
- }
-
-
-}// xxx_put_wrapper
-}// xxx_put
-}// test_assign_v2
-
-

Deleted: sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.h
==============================================================================
--- sandbox/statistics/support/libs/assign/v2/test/put/put_wrapper.h 2010-08-09 17:21:39 EDT (Mon, 09 Aug 2010)
+++ (empty file)
@@ -1,24 +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 BOOST_ASSIGN_V2_CHAIN_TEST_PUT_PUT_WRAPPER_ER_2010_H
-#define BOOST_ASSIGN_V2_CHAIN_TEST_PUT_PUT_WRAPPER_ER_2010_H
-
-namespace test_assign_v2{
-namespace xxx_put{
-namespace xxx_put_wrapper{
-
- void test();
-
-}// xxx_put_wrapper
-}// xxx_put
-}// test_assign_v2
-
-#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