Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71526 - in sandbox/assign_v2: boost/assign libs/assign/v2/src libs/assign/v2/test libs/assign/v2/test/support
From: erwann.rogard_at_[hidden]
Date: 2011-04-26 19:32:58


Author: e_r
Date: 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
New Revision: 71526
URL: http://svn.boost.org/trac/boost/changeset/71526

Log:
upd assign_v2
Text files modified:
   sandbox/assign_v2/boost/assign/v2.hpp | 2 +-
   sandbox/assign_v2/libs/assign/v2/src/main.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/support.cpp | 10 +++++-----
   sandbox/assign_v2/libs/assign/v2/test/support.h | 10 +++++-----
   sandbox/assign_v2/libs/assign/v2/test/support/functor.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/support/functor.h | 10 +++++-----
   sandbox/assign_v2/libs/assign/v2/test/support/traits.cpp | 6 +++---
   sandbox/assign_v2/libs/assign/v2/test/support/traits.h | 10 +++++-----
   8 files changed, 30 insertions(+), 30 deletions(-)

Modified: sandbox/assign_v2/boost/assign/v2.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2.hpp 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
@@ -12,7 +12,7 @@
 
 #include <boost/assign/v2/chain.hpp>
 #include <boost/assign/v2/conversion.hpp>
-#include <boost/assign/v2/detail.hpp>
+#include <boost/assign/v2/support.hpp>
 #include <boost/assign/v2/deque.hpp>
 #include <boost/assign/v2/option.hpp>
 #include <boost/assign/v2/put.hpp>

Modified: sandbox/assign_v2/libs/assign/v2/src/main.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/src/main.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/src/main.cpp 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
@@ -1,14 +1,14 @@
 #include <string>
 #include <iostream>
 #include <boost/config.hpp>
-#include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
+#include <boost/assign/v2/support/config/enable_cpp0x.hpp>
 #include <boost/format.hpp>
 #include <boost/version.hpp>
 
 // Test
 #include <libs/assign/v2/test/chain.h>
 #include <libs/assign/v2/test/conversion.h>
-#include <libs/assign/v2/test/detail.h>
+#include <libs/assign/v2/test/support.h>
 #include <libs/assign/v2/test/deque.h>
 #include <libs/assign/v2/test/interpreter.h>
 #include <libs/assign/v2/test/option.h>
@@ -62,7 +62,7 @@
         using namespace test_assign_v2;
         xxx_chain::test();
         xxx_conversion::test();
- xxx_detail::test();
+ xxx_support::test();
         xxx_deque::test();
         xxx_interpreter::test();
         xxx_option::test();

Modified: sandbox/assign_v2/libs/assign/v2/test/support.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support.cpp 2011-04-26 19:32:57 EDT (Tue, 26 Apr 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) //
 //////////////////////////////////////////////////////////////////////////////
-#include <libs/assign/v2/test/detail/functor.h>
-#include <libs/assign/v2/test/detail/traits.h>
-#include <libs/assign/v2/test/detail.h>
+#include <libs/assign/v2/test/support/functor.h>
+#include <libs/assign/v2/test/support/traits.h>
+#include <libs/assign/v2/test/support.h>
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 
     void test(){
         xxx_functor::test();
         xxx_traits::test();
     }
 
-}// xxx_detail
+}// xxx_support
 }// test_assign_v2

Modified: sandbox/assign_v2/libs/assign/v2/test/support.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support.h 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
@@ -7,15 +7,15 @@
 // 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_DETAIL_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_DETAIL_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_SUPPORT_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_SUPPORT_ER_2010_H
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 
     void test();
 
-}// xxx_detail
+}// xxx_support
 }// test_assign_v2
 
-#endif // LIBS_ASSIGN_V2_TEST_DETAIL_ER_2010_H
+#endif // LIBS_ASSIGN_V2_TEST_SUPPORT_ER_2010_H

Modified: sandbox/assign_v2/libs/assign/v2/test/support/functor.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support/functor.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support/functor.cpp 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
@@ -11,10 +11,10 @@
 #include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
 #include <boost/assign/v2/detail/functor/value.hpp>
 #include <boost/tuple/tuple.hpp>
-#include <libs/assign/v2/test/detail/functor.h>
+#include <libs/assign/v2/test/support/functor.h>
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 namespace xxx_functor{
 
 
@@ -89,5 +89,5 @@
     }
 
 }// xxx_functor
-}// xxx_detail
+}// xxx_support
 }// test_assign_v2

Modified: sandbox/assign_v2/libs/assign/v2/test/support/functor.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support/functor.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support/functor.h 2011-04-26 19:32:57 EDT (Tue, 26 Apr 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_DETAIL_FUNCTOR_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_DETAIL_FUNCTOR_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_SUPPORT_FUNCTOR_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_SUPPORT_FUNCTOR_ER_2010_H
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 namespace xxx_functor{
 
     void test();
 
 }// xxx_functor
-}// xxx_detail
+}// xxx_support
 }// test_assign_v2
 
-#endif // LIBS_ASSIGN_V2_TEST_DETAIL_FUNCTOR_ER_2010_H
+#endif // LIBS_ASSIGN_V2_TEST_SUPPORT_FUNCTOR_ER_2010_H

Modified: sandbox/assign_v2/libs/assign/v2/test/support/traits.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support/traits.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support/traits.cpp 2011-04-26 19:32:57 EDT (Tue, 26 Apr 2011)
@@ -14,10 +14,10 @@
 #include <boost/assign/v2/detail/traits.hpp>
 #include <boost/mpl/assert.hpp>
 #include <boost/static_assert.hpp>
-#include <libs/assign/v2/test/detail/traits.h>
+#include <libs/assign/v2/test/support/traits.h>
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 namespace xxx_traits{
 
     void test()
@@ -49,6 +49,6 @@
     }
 
 }// xxx_traits
-}// xxx_detail
+}// xxx_support
 }// xxx_test_assign
 

Modified: sandbox/assign_v2/libs/assign/v2/test/support/traits.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/support/traits.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/support/traits.h 2011-04-26 19:32:57 EDT (Tue, 26 Apr 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_DETAIL_TRAITS_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_DETAIL_TRAITS_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_SUPPORT_TRAITS_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_SUPPORT_TRAITS_ER_2010_H
 
 namespace test_assign_v2{
-namespace xxx_detail{
+namespace xxx_support{
 namespace xxx_traits{
 
     void test();
 
 }// xxx_traits
-}// xxx_detail
+}// xxx_support
 }// test_assign_v2
 
-#endif // LIBS_ASSIGN_V2_TEST_DETAIL_TRAITS_ER_2010_H
+#endif // LIBS_ASSIGN_V2_TEST_SUPPORT_TRAITS_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