Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66908 - sandbox/statistics/support/libs/assign/v2/test/put
From: erwann.rogard_at_[hidden]
Date: 2010-11-30 13:26:07


Author: e_r
Date: 2010-11-30 13:26:07 EST (Tue, 30 Nov 2010)
New Revision: 66908
URL: http://svn.boost.org/trac/boost/changeset/66908

Log:
fixing minor bug in libs/assign/v2
Text files modified:
   sandbox/statistics/support/libs/assign/v2/test/put/static.cpp | 24 ++++++++++++------------
   1 files changed, 12 insertions(+), 12 deletions(-)

Modified: sandbox/statistics/support/libs/assign/v2/test/put/static.cpp
==============================================================================
--- sandbox/statistics/support/libs/assign/v2/test/put/static.cpp (original)
+++ sandbox/statistics/support/libs/assign/v2/test/put/static.cpp 2010-11-30 13:26:07 EST (Tue, 30 Nov 2010)
@@ -44,28 +44,28 @@
             using namespace boost::assign::v2;
         {
                 typedef modifier_tag::push_back wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_static( std::list, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( std::vector, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( std::deque, int, , 0 )
+ MACRO( std::list, int, , 0 )
+ MACRO( std::vector, int, , 0 )
+ MACRO( std::deque, int, , 0 )
 
- LIBS_ASSIGN_V2_TEST_PUT_static( boost::ptr_deque, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( boost::ptr_list, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( boost::ptr_vector, int, , 0 )
+ MACRO( boost::ptr_deque, int, , 0 )
+ MACRO( boost::ptr_list, int, , 0 )
+ MACRO( boost::ptr_vector, int, , 0 )
         }
         {
                 typedef modifier_tag::at_next wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_static( boost::array, int, 1, 1 )
- LIBS_ASSIGN_V2_TEST_PUT_static( boost::ptr_array, int, 1, 1 )
+ MACRO( boost::array, int, 1, 1 )
+ MACRO( boost::ptr_array, int, 1, 1 )
         }
         {
                 typedef modifier_tag::push wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_static( std::queue, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( std::stack, int, ,0 )
+ MACRO( std::queue, int, , 0 )
+ MACRO( std::stack, int, ,0 )
         }
         {
                 typedef modifier_tag::insert wanted_;
- LIBS_ASSIGN_V2_TEST_PUT_static( std::set, int, , 0 )
- LIBS_ASSIGN_V2_TEST_PUT_static( std::map, const char* , int, 1 )
+ MACRO( std::set, int, , 0 )
+ MACRO( std::map, const char* , int, 1 )
         }
         
     }


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