GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::undeclare_reachable(3) C++ Standard Libary std::undeclare_reachable(3)

std::undeclare_reachable - std::undeclare_reachable


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


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.


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


A safely-derived copy of p.


Throws nothing.


This section is incomplete
Reason: no example


declare_reachable declares that an object can not be recycled
(C++11)(removed in C++23) (function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.