Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70245 - in sandbox/assign_v2: boost/assign/v2/value libs/assign/v2/test libs/assign/v2/test/unit_testing libs/assign/v2/test/value libs/assign/v2/test/value/pipe
From: erwann.rogard_at_[hidden]
Date: 2011-03-20 20:28:17


Author: e_r
Date: 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
New Revision: 70245
URL: http://svn.boost.org/trac/boost/changeset/70245

Log:
upd assign_v2
Text files modified:
   sandbox/assign_v2/boost/assign/v2/value/pipe.hpp | 1 -
   sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/value.cpp | 4 ++--
   sandbox/assign_v2/libs/assign/v2/test/value/pipe.cpp | 6 ++----
   sandbox/assign_v2/libs/assign/v2/test/value/pipe/csv_put.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/value/put.h | 10 +++++-----
   6 files changed, 15 insertions(+), 18 deletions(-)

Modified: sandbox/assign_v2/boost/assign/v2/value/pipe.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/value/pipe.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/value/pipe.hpp 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -10,6 +10,5 @@
 #ifndef BOOST_ASSIGN_V2_VALUE_PIPE_ER_2010_HPP
 #define BOOST_ASSIGN_V2_VALUE_PIPE_ER_2010_HPP
 #include <boost/assign/v2/value/pipe/csv_put.hpp>
-#include <boost/assign/v2/value/pipe/put.hpp>
 
 #endif // BOOST_ASSIGN_V2_VALUE_PIPE_ER_2010_HPP

Modified: sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -26,9 +26,9 @@
 #include <libs/assign/v2/test/value/pipe/modifier/lookup.cpp>
 #include <libs/assign/v2/test/value/pipe/modifier/repeat.cpp>
 #include <libs/assign/v2/test/value/pipe/modifier/standard.cpp>
-#include <libs/assign/v2/test/value/pipe/put.cpp>
+#include <libs/assign/v2/test/value/pipe/csv_put.cpp>
 #include <libs/assign/v2/test/value/ptr.cpp>
-#include <libs/assign/v2/test/value/put.cpp>
+#include <libs/assign/v2/test/value/csv_put.cpp>
 
 
 #include <boost/test/unit_test.hpp>
@@ -53,7 +53,7 @@
                 test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_lookup::test ) );
                 test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_repeat::test ) );
                 test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_standard::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_put::test ) );
+ test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_csv_put::test ) );
                 test->add( BOOST_TEST_CASE( &ns::xxx_ptr::test ) );
                 test->add( BOOST_TEST_CASE( &ns::xxx_put::test ) );
     }

Modified: sandbox/assign_v2/libs/assign/v2/test/value.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/value.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/value.cpp 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -7,12 +7,12 @@
 // 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 <libs/assign/v2/test/value/csv_put.h>
 #include <libs/assign/v2/test/value/deque.h>
 #include <libs/assign/v2/test/value/modifier.h>
 #include <libs/assign/v2/test/value/fun.h>
 #include <libs/assign/v2/test/value/pipe.h>
 #include <libs/assign/v2/test/value/ptr.h>
-#include <libs/assign/v2/test/value/put.h>
 #include <libs/assign/v2/test/value.h>
 
 namespace test_assign_v2{
@@ -25,7 +25,7 @@
         xxx_modifier::test();
         xxx_pipe::test();
         xxx_ptr::test();
- xxx_put::test();
+ xxx_csv_put::test();
     }
 
 }// xxx_value

Modified: sandbox/assign_v2/libs/assign/v2/test/value/pipe.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/value/pipe.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/value/pipe.cpp 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -7,10 +7,9 @@
 // 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 <libs/assign/v2/test/value/pipe/args_list.h>
+#include <libs/assign/v2/test/value/pipe/csv_put.h>
 #include <libs/assign/v2/test/value/pipe/fun.h>
 #include <libs/assign/v2/test/value/pipe/modifier.h>
-#include <libs/assign/v2/test/value/pipe/put.h>
 #include <libs/assign/v2/test/value/pipe.h>
 
 namespace test_assign_v2{
@@ -20,10 +19,9 @@
     void test()
     {
             // TODO
- //xxx_args_list::test();
         //xxx_fun::test();
         //xxx_modifier::test();
- xxx_put::test();
+ xxx_csv_put::test();
     }
 
 }// xxx_pipe

Modified: sandbox/assign_v2/libs/assign/v2/test/value/pipe/csv_put.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/value/pipe/csv_put.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/value/pipe/csv_put.cpp 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -19,12 +19,12 @@
 #include <boost/assign/v2/value/pipe/csv_put.hpp>
 #include <boost/range/algorithm/for_each.hpp>
 
-#include <libs/assign/v2/test/value/pipe/put.h>
+#include <libs/assign/v2/test/value/pipe/csv_put.h>
 
 namespace test_assign_v2{
 namespace xxx_value{
 namespace xxx_pipe{
-namespace xxx_put{
+namespace xxx_csv_put{
 
     void test(){
         using namespace boost;
@@ -43,7 +43,7 @@
         }
     }// test()
 
-}// xxx_put
+}// xxx_csv_put
 }// xxx_pipe
 }// xxx_value
 }// xxx_test_assign
\ No newline at end of file

Modified: sandbox/assign_v2/libs/assign/v2/test/value/put.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/value/put.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/value/put.h 2011-03-20 20:28:15 EDT (Sun, 20 Mar 2011)
@@ -7,17 +7,17 @@
 // 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_VALUE_CONTAINER_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_VALUE_CONTAINER_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_VALUE_PUT_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_VALUE_PUT_ER_2010_H
 
 namespace test_assign_v2{
 namespace xxx_value{
-namespace xxx_put{
+namespace xxx_csv_put{
 
     void test();
 
-}// xxx_put
+}// xxx_csv_put
 }// xxx_value
 }// xxx_test_assign
 
-#endif
+#endif // LIBS_ASSIGN_V2_TEST_VALUE_PUT_ER_2010_H


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