From: scleary_at_[hidden]
Date: 2001-04-05 13:13:58


> new int(1)
> new int(2) // throws
> auto_ptr<int>(new int(1))
> auto_ptr<int>(new int(2))
>
> is a valid sequence. See http://www.gotw.ca/gotw/056.htm .

I stand corrected!

        -Steve