|
Boost-Commit : |
From: xushiweizh_at_[hidden]
Date: 2008-04-28 21:50:40
Author: xushiwei
Date: 2008-04-28 21:50:40 EDT (Mon, 28 Apr 2008)
New Revision: 44868
URL: http://svn.boost.org/trac/boost/changeset/44868
Log:
test
Text files modified:
sandbox/memory/libs/memory/test/memory/simple_examples.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 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:50:40 EDT (Mon, 28 Apr 2008)
@@ -16,7 +16,7 @@
void testAutoAlloc()
{
- boost::auto_alloc alloc;
+ boost::auto_alloc alloc;
int* intObj = BOOST_NEW(alloc, int);
int* intObjWithArg = BOOST_NEW(alloc, int)(10);
int* intArray = BOOST_NEW_ARRAY(alloc, int, 100);
@@ -45,7 +45,7 @@
void testTlsScopedAlloc()
{
boost::scoped_alloc alloc;
- // same as: boost::scoped_alloc(boost::tls_block_pool::instance());
+ // same as: boost::scoped_alloc(boost::tls_block_pool::instance());
int* intObj = BOOST_NEW(alloc, int);
int* intObjWithArg = BOOST_NEW(alloc, int)(10);
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