std::undeclare_reachable

Defined in header <memory>
template< class T >
T* undeclare_reachable( T* p );
(since C++11)

Removes the reachable status of the object, referenced by the pointer p, if it was previously set by std::declare_reachable. If the object was declared reachable multiple times, equal number of calls to undeclare_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.

Parameters

p - a pointer to an object previously declared reachable and not destructed since then

Return value

A safely-derived copy of p.

Exceptions

None.

Example

See also

(C++11)
declares that an object can not be recycled
(function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/gc/undeclare_reachable