Home | Libraries | People | FAQ | More |
Constructor.
recycled_ptr( recycled_ptr const& other);
If other
references an
object, the newly constructed pointer will acquire shared ownership.
Otherwise this will be empty. The new pointer will reference the same
recycle bin as other
.
&this->bin() == &other->bin() && this->get() == other.get()
Throws nothing.
Name |
Description |
---|---|
|
The pointer to copy |