Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70735 - in sandbox/assign_v2: boost/assign/v2/option boost/assign/v2/ref/wrapper libs/assign/v2
From: erwann.rogard_at_[hidden]
Date: 2011-03-29 21:46:32


Author: e_r
Date: 2011-03-29 21:46:32 EDT (Tue, 29 Mar 2011)
New Revision: 70735
URL: http://svn.boost.org/trac/boost/changeset/70735

Log:
upd assign_v2
Text files modified:
   sandbox/assign_v2/boost/assign/v2/option/list.hpp | 2 +-
   sandbox/assign_v2/boost/assign/v2/ref/wrapper/copy.hpp | 2 --
   sandbox/assign_v2/libs/assign/v2/tutorial.cpp | 6 +-----
   3 files changed, 2 insertions(+), 8 deletions(-)

Modified: sandbox/assign_v2/boost/assign/v2/option/list.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/option/list.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/option/list.hpp 2011-03-29 21:46:32 EDT (Tue, 29 Mar 2011)
@@ -9,7 +9,7 @@
 //////////////////////////////////////////////////////////////////////////////
 #ifndef BOOST_ASSIGN_V2_OPTION_LIST_ER_2010_HPP
 #define BOOST_ASSIGN_V2_OPTION_LIST_ER_2010_HPP
-#include <boost/assign/v2/detail/keyword/nil.hpp>
+#include <boost/assign/v2/detail/keyword.hpp>
 #include <boost/assign/v2/interpreter/crtp.hpp>
 #include <boost/mpl/empty_base.hpp>
 #include <boost/mpl/eval_if.hpp>

Modified: sandbox/assign_v2/boost/assign/v2/ref/wrapper/copy.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/ref/wrapper/copy.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/ref/wrapper/copy.hpp 2011-03-29 21:46:32 EDT (Tue, 29 Mar 2011)
@@ -34,8 +34,6 @@
 
         /*<-*/BOOST_STATIC_CONSTANT( bool, is_const = boost::is_const<T>::value );/*->*/
 
- /*<-*/BOOST_ASSIGN_V2_IGNORE(/*->*/static bool is_const;/*<-*)/*->*/
-
         wrapper()/*<-*/
             {/*TODO or null pointer?*/}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
 

Modified: sandbox/assign_v2/libs/assign/v2/tutorial.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/tutorial.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/tutorial.cpp 2011-03-29 21:46:32 EDT (Tue, 29 Mar 2011)
@@ -113,11 +113,7 @@
             ar_::size_type index = 2; using namespace lambda;
             ( put( powers ) % ( _iterate = var( index )++ ) )( 100 )( 1000 );
 
- for(
- int value = 1, index = 0;
- index < ar_::static_size;
- index++, value *=10
- )
+ for(int value = 1, index = 0; index < ar_::static_size; index++, value *=10)
             {
                 assert( powers[index] == value );
             }


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