$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r70594 - sandbox/assign_v2/boost/assign/v2/option/modifier/std
From: erwann.rogard_at_[hidden]
Date: 2011-03-26 16:47:22
Author: e_r
Date: 2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
New Revision: 70594
URL: http://svn.boost.org/trac/boost/changeset/70594
Log:
upd assign_v2
Text files modified: 
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/framework.hpp  |   110 --------------------------------------- 
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/include.hpp    |    18 ------                                  
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/insert.hpp     |    17 -----                                   
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/push.hpp       |    17 -----                                   
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_back.hpp  |    17 -----                                   
   sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_front.hpp |    17 -----                                   
   6 files changed, 6 insertions(+), 190 deletions(-)
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/framework.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/framework.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/framework.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,109 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_STD_MODIFIER_MODIFIER_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_MODIFIER_ER_2010_HPP
-#include <boost/assign/v2/detail/keyword/ignore.hpp>
-#include <boost/assign/v2/interpreter/fwd.hpp>
-#include <boost/assign/v2/option/modifier/framework.hpp>
-#include <boost/preprocessor/cat.hpp>
-
-namespace boost{
-namespace assign{
-namespace v2{
-
-BOOST_ASSIGN_V2_OPTION_MODIFIER_KEYWORD(std_modifier)
-BOOST_ASSIGN_V2_OPTION_MODIFIER_META_MODIFIER_TAG(std_modifier, Arg)
-
-}// v2
-}// assign
-}// boost
-
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_PTR(FUN)\
-    template<typename C, typename T>\
-    void impl(C& cont, T* t)const{\
-    cont.FUN( t );\
-}\
-/**/
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_LVALUE(FUN)\
-    template<typename C, typename T>\
-    void impl(C& cont, T& t)const{\
-    cont.FUN( t );\
-}\
-/**/
-
-#include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
-#if BOOST_ASSIGN_V2_ENABLE_CPP0X
-#include <utility>
-#include <boost/utility/enable_if.hpp>
-#include <boost/type_traits/is_reference.hpp>
-// disable_if necessary to avoid ambiguity resolution with GCC4.4
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_RVALUE(FUN)\
-    template<typename C, typename T>\
-        typename boost::disable_if<\
-        boost::is_reference<T>,\
-        void\
-    >::type\
-    impl(C& cont, T&& t)const{\
-        cont.FUN( std::move( t ) );\
-    }\
-/**/
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL(FUN)\
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_LVALUE(FUN)\
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_RVALUE(FUN)\
-/**/
-#else
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL(FUN)\
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL_LVALUE(FUN)\
-/**/
-#endif // BOOST_ASSIGN_V2_ENABLE_CPP0X
-
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(FUN)\
-namespace boost{\
-namespace assign{\
-namespace v2{\
-namespace modifier_tag{ struct FUN{}; }\
-}\
-}\
-}\
-/**/
-
-// Must be preceded by BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(FUN)
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER(FUN)\
-namespace boost{\
-namespace assign{\
-namespace v2{\
-namespace interpreter_aux{\
-\
-    template<>\
-    class interpreter_modifier<modifier_tag::FUN>\
-    {\
-        typedef keyword_aux::ignore ignore_;\
-        public:\
-        interpreter_modifier(){}\
-        interpreter_modifier( ignore_, ignore_ ){}\
-        BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_IMPL(FUN)\
-    };\
-\
-}\
-namespace{\
-\
-    interpreter_aux::option_modifier<interpreter_aux::keyword_std_modifier, modifier_tag::FUN> const\
-        BOOST_PP_CAT(_,FUN) = ( \
-        _std_modifier = modifier_tag::FUN() \
-    );\
-\
-}\
-}\
-}\
-}\
-/**/
-
-
-#endif // BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_MODIFIER_ER_2010_HPP
+// TODO remove file
\ No newline at end of file
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/include.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/include.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/include.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,17 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_STD_MODIFIER_INCLUDE_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_INCLUDE_ER_2010_HPP
-#include <boost/assign/v2/option/modifier/std/insert.hpp>
-#include <boost/assign/v2/option/modifier/std/push.hpp>
-#include <boost/assign/v2/option/modifier/std/push_back.hpp>
-#include <boost/assign/v2/option/modifier/std/push_front.hpp>
-
-#endif // BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_INCLUDE_ER_2010_HPP
+// TODO remove file
\ No newline at end of file
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/insert.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/insert.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/insert.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,16 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_INSERT_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_INSERT_ER_2010_HPP
-#include <boost/assign/v2/option/std/modifier/framework.hpp>
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(insert)
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER(insert)
-
-#endif // BOOST_ASSIGN_V2_OPTION_INSERT_ER_2010_HPP
+// TODO remove file
\ No newline at end of file
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/push.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/push.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/push.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,16 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_PUSH_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_PUSH_ER_2010_HPP
-#include <boost/assign/v2/option/std/modifier/framework.hpp>
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(push)
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER(push)
-
-#endif // BOOST_ASSIGN_V2_OPTION_PUSH_ER_2010_HPP
+// TODO remove file
\ No newline at end of file
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_back.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_back.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_back.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,16 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_PUSH_BACK_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_PUSH_BACK_ER_2010_HPP
-#include <boost/assign/v2/option/std/modifier/framework.hpp>
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(push_back)
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER(push_back)
-
-#endif // BOOST_ASSIGN_V2_OPTION_PUSH_BACK_ER_2010_HPP
+// TODO remove file
\ No newline at end of file
Modified: sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_front.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_front.hpp	(original)
+++ sandbox/assign_v2/boost/assign/v2/option/modifier/std/push_front.hpp	2011-03-26 16:47:21 EDT (Sat, 26 Mar 2011)
@@ -1,16 +1 @@
-//////////////////////////////////////////////////////////////////////////////
-//  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_OPTION_PUSH_FRONT_ER_2010_HPP
-#define BOOST_ASSIGN_V2_OPTION_PUSH_FRONT_ER_2010_HPP
-#include <boost/assign/v2/option/std/modifier/framework.hpp>
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER_TAG(push_front)
-BOOST_ASSIGN_V2_OPTION_STD_MODIFIER(push_front)
-
-#endif // BOOST_ASSIGN_V2_OPTION_PUSH_FRONT_ER_2010_HPP
+// TODO remove file
\ No newline at end of file