Namespaces
Variants
Views
Actions

std::unique_ptr::release

From cppreference.com
 
 
 
 
 
pointer release();
(since C++11)

Releases the ownership of the managed object if any. get() returns nullptr after the call.

Contents

[edit] Parameters

(none)

[edit] Return value

Pointer to the managed object or nullptr if there was no managed object, i.e. the value which would be returned by get() before the call.

[edit] Exceptions

noexcept specification:  
noexcept
  (since C++11)

[edit] Example

[edit] See also

returns a pointer to the managed object
(public member function) [edit]
replaces the managed object
(public member function) [edit]