remove debug code

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@310 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2005-10-17 09:44:00 +00:00
parent a60cd00348
commit 0df314b345

View file

@ -748,7 +748,6 @@ SmallObjAllocator::SmallObjAllocator( std::size_t pageSize,
maxSmallObjectSize_( maxObjectSize ),
objectAlignSize_( objectAlignSize )
{
std::cout << "SmallObjAllocator " << this << std::endl;
assert( 0 != objectAlignSize );
const std::size_t allocCount = GetOffset( maxObjectSize, objectAlignSize );
pool_ = new FixedAllocator[ allocCount ];
@ -877,6 +876,9 @@ void SmallObjAllocator::Deallocate( void * p )
////////////////////////////////////////////////////////////////////////////////
// $Log$
// Revision 1.13 2005/10/17 09:44:00 syntheticpp
// remove debug code
//
// Revision 1.12 2005/10/17 08:07:23 syntheticpp
// gcc patch
//