Boost logo

Boost :

Subject: Re: [boost] [Memory Managed Pointer] Review Request
From: Phil Bouchard (philippe_at_[hidden])
Date: 2011-04-24 23:09:19


On 4/24/2011 1:05 PM, Phil Bouchard wrote:
>
> The following output:
> [...]
>
> Order of destruction:
> A: 0
> A: 1
> A: 2
> A: 3
> ~A: 3
> ~A: 2
> ~A: 1
> ~A: 0

Sorry, the opposite is the correct way:

Order of destruction:
A: 0
A: 1
A: 2
A: 3
~A: 0
~A: 1
~A: 2
~A: 3

-Phil


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk