From: Gregory Colvin (gregory.colvin_at_[hidden])
Date: 2003-08-26 11:11:50


For shared_ptr the count is allocated by the following line in the
shared_count
constructor:

    new sp_counted_base_impl<P, D>(p, d);

So it might be possible to make the allocation customizable by
specializing
sp_counted_base_impl.