|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r70805 - sandbox/assign_v2/libs/assign/v2/test/put
From: erwann.rogard_at_[hidden]
Date: 2011-03-31 22:44:26
Author: e_r
Date: 2011-03-31 22:44:25 EDT (Thu, 31 Mar 2011)
New Revision: 70805
URL: http://svn.boost.org/trac/boost/changeset/70805
Log:
upd assign_v2
Text files modified:
sandbox/assign_v2/libs/assign/v2/test/put/put.cpp | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
Modified: sandbox/assign_v2/libs/assign/v2/test/put/put.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/put.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/put.cpp 2011-03-31 22:44:25 EDT (Thu, 31 Mar 2011)
@@ -123,9 +123,14 @@
// http://bioinfo.mbb.yale.edu/~mbg/dom/fun3/area-codes/
//[test_put_put_area_codes
typedef const char us_state_ [3]; us_state_ ct = "CT", nj = "NJ", ny = "NY";
- typedef int area_code_; typedef tuple<us_state_/*<<Notice the [*reference]>>*/&, area_code_> data_; std::deque< data_ > region;
+ typedef int area_code_;
+ typedef tuple<us_state_/*<<Notice the [*reference]>>*/&, area_code_> data_;
+ std::deque< data_ > region;
/*<<Calls `tri_state.push_back( data_( s, c ) )` for [^( s, c ) =( ny, 212 )...( ct, 203 )]>>*/
- as2::put( region )( ny, 212 )( ny, 718 )( ny, 516 )( ny, 914 )( nj, 210 )( nj, 908 )( nj, 609 )( ct, 203 );
+ as2::put( region )
+ ( ny, 212 )( ny, 718 )( ny, 516 )( ny, 914 )
+ ( nj, 210 )( nj, 908 )( nj, 609 )
+ ( ct, 203 );
BOOST_ASSIGN_V2_CHECK( get<0>( region.front() ) == ny );
BOOST_ASSIGN_V2_CHECK( get<1>( region.back() ) == 203 );
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