|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <memory> | ||
template<class T> T* undeclare_reachable( T* p); | (since C++11) (removed in C++23) | |
Removes the reachable status of the object, referenced by the pointerp, if it was previously set bystd::declare_reachable. If the object was declared reachable multiple times, equal number of calls toundeclare_reachable would be needed to remove this status. Once the object is not declared reachable and has no pointers referencing it, it may be reclaimed by garbage collector or reported as a leak by a leak detector.
Contents |
| p | - | a pointer to an object previously declared reachable and not destructed since then |
A safely-derived copy ofp.
Throws nothing.
(C++11)(removed in C++23) | declares that an object can not be recycled (function)[edit] |