Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70374 - in sandbox/assign_v2/libs/assign/v2/test: . interpreter optional put/pipe put/pipe/optional
From: erwann.rogard_at_[hidden]
Date: 2011-03-21 18:07:39


Author: e_r
Date: 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
New Revision: 70374
URL: http://svn.boost.org/trac/boost/changeset/70374

Log:
upd assign_v2
Text files modified:
   sandbox/assign_v2/libs/assign/v2/test/interpreter.cpp | 8 ++++----
   sandbox/assign_v2/libs/assign/v2/test/interpreter.h | 4 ++--
   sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.h | 4 ++--
   sandbox/assign_v2/libs/assign/v2/test/optional.cpp | 2 +-
   sandbox/assign_v2/libs/assign/v2/test/optional/fun.cpp | 2 +-
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional.cpp | 2 +-
   sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional/fun.cpp | 2 +-
   8 files changed, 15 insertions(+), 15 deletions(-)

Modified: sandbox/assign_v2/libs/assign/v2/test/interpreter.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/interpreter.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/interpreter.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -7,16 +7,16 @@
 // 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/framework/modifier.h>
-#include <libs/assign/v2/test/framework.h>
+#include <libs/assign/v2/test/interpreter/modifier.h>
+#include <libs/assign/v2/test/interpreter.h>
 
 namespace test_assign_v2{
-namespace xxx_framework{
+namespace xxx_interpreter{
 
     void test()
     {
             xxx_modifier::test();
     }
 
-}// xxx_framework
+}// xxx_interpreter
 }// test_assign_v2

Modified: sandbox/assign_v2/libs/assign/v2/test/interpreter.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/interpreter.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/interpreter.h 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -11,11 +11,11 @@
 #define LIBS_ASSIGN_V2_TEST_FRAMEWORK_ER_2010_H
 
 namespace test_assign_v2{
-namespace xxx_framework{
+namespace xxx_interpreter{
 
     void test();
 
-}// xxx_framework
+}// xxx_interpreter
 }// xxx_test_assign
 
 #endif // LIBS_ASSIGN_V2_TEST_FRAMEWORK_ER_2010_H

Modified: sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -24,10 +24,10 @@
 #include <boost/ptr_container/ptr_vector.hpp>
 
 #include <boost/assign/v2/interpreter/modifier.hpp>
-#include <libs/assign/v2/test/framework/modifier.h>
+#include <libs/assign/v2/test/interpreter/modifier.h>
 
 namespace test_assign_v2{
-namespace xxx_framework{
+namespace xxx_interpreter{
 namespace xxx_modifier{
 
     // --User may skip this file-- //
@@ -77,5 +77,5 @@
 
 
 }// xxx_modifier
-}// xxx_framework
+}// xxx_interpreter
 }// test_assign_v2

Modified: sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/interpreter/modifier.h 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -11,13 +11,13 @@
 #define LIBS_ASSIGN_V2_TEST_FRAMEWORK_MODIFIER_ER_2010_H
 
 namespace test_assign_v2{
-namespace xxx_framework{
+namespace xxx_interpreter{
 namespace xxx_modifier{
 
     void test();
 
 }// xxx_modifier
-}// xxx_framework
+}// xxx_interpreter
 }// xxx_test_assign
 
 #endif // LIBS_ASSIGN_V2_TEST_FRAMEWORK_MODIFIER_ER_2010_H

Modified: sandbox/assign_v2/libs/assign/v2/test/optional.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/optional.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/optional.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -7,7 +7,7 @@
 // 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/optional/fun.h>
+#include <libs/assign/v2/test/optional/data.h>
 #include <libs/assign/v2/test/optional/iterate.h>
 #include <libs/assign/v2/test/optional/lookup.h>
 #include <libs/assign/v2/test/optional/repeat.h>

Modified: sandbox/assign_v2/libs/assign/v2/test/optional/fun.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/optional/fun.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/optional/fun.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -24,7 +24,7 @@
 #include <boost/numeric/conversion/bounds.hpp>
 #include <boost/range/algorithm/equal.hpp>
 #include <boost/typeof/typeof.hpp>
-#include <libs/assign/v2/test/optional/fun.h>
+#include <libs/assign/v2/test/optional/data.h>
 
 namespace test_assign_v2{
 namespace xxx_optional{

Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -7,7 +7,7 @@
 // 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/put/pipe/optional/fun.h>
+#include <libs/assign/v2/test/put/pipe/optional/data.h>
 #include <libs/assign/v2/test/put/pipe/optional/iterate.h>
 #include <libs/assign/v2/test/put/pipe/optional/lookup.h>
 #include <libs/assign/v2/test/put/pipe/optional/repeat.h>

Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional/fun.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional/fun.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/optional/fun.cpp 2011-03-21 18:07:37 EDT (Mon, 21 Mar 2011)
@@ -17,7 +17,7 @@
 #include <boost/assign/v2/optional/data.hpp>
 #include <boost/lambda/lambda.hpp>
 #include <boost/range/algorithm/equal.hpp>
-#include <libs/assign/v2/test/put/pipe/optional/fun.h>
+#include <libs/assign/v2/test/put/pipe/optional/data.h>
 
 namespace test_assign_v2{
 namespace xxx_put{


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