|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r54121 - sandbox/monotonic/libs/monotonic/test
From: christian.schladetsch_at_[hidden]
Date: 2009-06-19 21:22:01
Author: cschladetsch
Date: 2009-06-19 21:22:01 EDT (Fri, 19 Jun 2009)
New Revision: 54121
URL: http://svn.boost.org/trac/boost/changeset/54121
Log:
slight reformatting
Text files modified:
sandbox/monotonic/libs/monotonic/test/compare_memory_pool.cpp | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
Modified: sandbox/monotonic/libs/monotonic/test/compare_memory_pool.cpp
==============================================================================
--- sandbox/monotonic/libs/monotonic/test/compare_memory_pool.cpp (original)
+++ sandbox/monotonic/libs/monotonic/test/compare_memory_pool.cpp 2009-06-19 21:22:01 EDT (Fri, 19 Jun 2009)
@@ -246,7 +246,6 @@
PoolResult result;
- // test tbb_allocator
if (types.Includes(Type::TBB))
{
srand(42);
@@ -260,7 +259,6 @@
result.tbb_elapsed = timer.elapsed();
}
- // test boost::fast_pool_allocator
if (types.Includes(Type::FastPool))
{
srand(42);
@@ -277,7 +275,6 @@
result.fast_pool_elapsed = timer.elapsed();
}
- // test boost::pool_allocator
if (types.Includes(Type::Pool))
{
srand(42);
@@ -294,7 +291,6 @@
result.pool_elapsed = timer.elapsed();
}
- // test monotonic
if (types.Includes(Type::Monotonic))
{
srand(42);
@@ -309,7 +305,6 @@
result.mono_elapsed = timer.elapsed();
}
- // test local monotonic
if (types.Includes(Type::Monotonic))
{
srand(42);
@@ -325,7 +320,6 @@
result.local_mono_elapsed = timer.elapsed();
}
- // test std
if (types.Includes(Type::Standard))
{
srand(42);
@@ -340,7 +334,6 @@
}
cout << "." << flush;
- //cout << length << ": fast_pool, pool, std, mono, local: " << result.fast_pool_elapsed << ", " << result.pool_elapsed << ", " << result.std_elapsed << ", " << result.mono_elapsed << ", " << result.local_mono_elapsed << endl;
return result;
}
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