<boost/url/grammar/recycled.hpp>
recycled_ptr(recycled_ptr const& other) noexcept;
If other
references an object, the newly constructed pointer acquires shared ownership. Otherwise this is empty. The new pointer references the same recycle bin as other
.
&this->bin() == &other->bin() && this->get() == other.get()
Throws nothing.
Name | Description |
---|---|
other | The pointer to copy |