Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59949 - sandbox/statistics/detail/assign/libs/assign/example
From: erwann.rogard_at_[hidden]
Date: 2010-02-26 08:59:27


Author: e_r
Date: 2010-02-26 08:59:27 EST (Fri, 26 Feb 2010)
New Revision: 59949
URL: http://svn.boost.org/trac/boost/changeset/59949

Log:
m
Text files modified:
   sandbox/statistics/detail/assign/libs/assign/example/cref_list_of2.cpp | 24 ++++++++++++------------
   1 files changed, 12 insertions(+), 12 deletions(-)

Modified: sandbox/statistics/detail/assign/libs/assign/example/cref_list_of2.cpp
==============================================================================
--- sandbox/statistics/detail/assign/libs/assign/example/cref_list_of2.cpp (original)
+++ sandbox/statistics/detail/assign/libs/assign/example/cref_list_of2.cpp 2010-02-26 08:59:27 EST (Fri, 26 Feb 2010)
@@ -48,24 +48,24 @@
         }
         {
             BOOST_AUTO(tmp,ref_list_of(a)(b)(c));
- std::fill(boost::begin(tmp),boost::end(tmp),0);
- BOOST_ASSERT(a == 0);
- BOOST_ASSERT(b == 0);
- BOOST_ASSERT(c == 0);
+ std::fill(boost::begin(tmp),boost::end(tmp),0);
+ BOOST_ASSERT(a == 0);
+ BOOST_ASSERT(b == 0);
+ BOOST_ASSERT(c == 0);
         }
         }
     {
         // ref_rebind_list_of
- {
+ {
             int a=1, b=2, c=3;
- ints_ ints;
- ints.clear();
- BOOST_AUTO(tmp,cref_rebind_list_of(a)(b)(c));
+ ints_ ints;
+ ints.clear();
+ BOOST_AUTO(tmp,cref_rebind_list_of(a)(b)(c));
             {
- ints = tmp;
- BOOST_ASSERT(ints[0] == a);
- BOOST_ASSERT(ints[1] == b);
- BOOST_ASSERT(ints[2] == c);
+ ints = tmp;
+ BOOST_ASSERT(ints[0] == a);
+ BOOST_ASSERT(ints[1] == b);
+ BOOST_ASSERT(ints[2] == c);
             }
             int d = 4;
             tmp.assign(d);


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