$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Mathias Gaunard (mathias.gaunard_at_[hidden])
Date: 2008-04-23 15:32:27
Steven Watanabe wrote:
> Basically,
> this works by imposing a hard upper bound on the lifetime
> of a group of objects, rather than dealing with them separately.
You can benefit from that without garbage collection, region allocation
is enough.
For example, allocate all nodes of a container in the same region and
free that region in the container destructor.