+ add comment

This commit is contained in:
artemp 2012-11-28 19:15:48 +00:00
parent 99141fa5e5
commit f56a365a03

View file

@ -195,6 +195,7 @@ public:
{
initialSize_ = size;
unsigned total_size = usedPool_.size() + unusedPool_.size();
// ensure we don't have ghost obj's in the pool.
if (total_size < initialSize_)
{
unsigned grow_size = initialSize_ - total_size ;