$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: gchen (chengang31_at_[hidden])
Date: 2007-01-14 11:54:49
Peter Dimov wrote:
> gchen wrote:
>> But it seems that quick_allocator never free the memory pool (blocks)
>> after my program exits, do I miss something?
>
> It doesn't. After your program exits, all memory is automatically freed by
> the OS. There's no need to free it explicitly, except maybe to keep
> simplistic leak checkers happy.
>
OK, I see...
Thanks for the quick reply.