Boost logo

Boost-Commit :

From: xushiweizh_at_[hidden]
Date: 2008-04-28 21:48:42


Author: xushiwei
Date: 2008-04-28 21:48:41 EDT (Mon, 28 Apr 2008)
New Revision: 44867
URL: http://svn.boost.org/trac/boost/changeset/44867

Log:
t
Text files modified:
   sandbox/memory/libs/memory/test/memory/simple_examples.cpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: sandbox/memory/libs/memory/test/memory/simple_examples.cpp
==============================================================================
--- sandbox/memory/libs/memory/test/memory/simple_examples.cpp (original)
+++ sandbox/memory/libs/memory/test/memory/simple_examples.cpp 2008-04-28 21:48:41 EDT (Mon, 28 Apr 2008)
@@ -18,7 +18,7 @@
 {
         boost::auto_alloc alloc;
     int* intObj = BOOST_NEW(alloc, int);
- int* intObjWithArg = BOOST_NEW(alloc, int)(10);
+ int* intObjWithArg = BOOST_NEW(alloc, int)(10);
     int* intArray = BOOST_NEW_ARRAY(alloc, int, 100);
     int* intBuf = BOOST_ALLOC(alloc, int);
     int* intArrayBuf = BOOST_ALLOC_ARRAY(alloc, int, 100);
@@ -33,7 +33,7 @@
     boost::scoped_alloc alloc(recycle);
 
     int* intObj = BOOST_NEW(alloc, int);
- int* intObjWithArg = BOOST_NEW(alloc, int)(10);
+ int* intObjWithArg = BOOST_NEW(alloc, int)(10);
     int* intArray = BOOST_NEW_ARRAY(alloc, int, 100);
     int* intBuf = BOOST_ALLOC(alloc, int);
     int* intArrayBuf = BOOST_ALLOC_ARRAY(alloc, int, 100);
@@ -48,7 +48,7 @@
         // same as: boost::scoped_alloc(boost::tls_block_pool::instance());
 
     int* intObj = BOOST_NEW(alloc, int);
- int* intObjWithArg = BOOST_NEW(alloc, int)(10);
+ int* intObjWithArg = BOOST_NEW(alloc, int)(10);
     int* intArray = BOOST_NEW_ARRAY(alloc, int, 100);
     int* intBuf = BOOST_ALLOC(alloc, int);
     int* intArrayBuf = BOOST_ALLOC_ARRAY(alloc, int, 100);
@@ -61,5 +61,5 @@
 {
     testAutoAlloc();
     testScopedAlloc();
- testTlsScopedAlloc();
+ testTlsScopedAlloc();
 }


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