Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
storage_ptr::storage_ptr (4 of 5 overloads)

Move constructor.

Synopsis
storage_ptr(
    storage_ptr&& other);
Description

This function constructs a pointer that points to the same memory resource as other, with the same ownership:

After construction, other will point to the default memory resource.

Complexity

Constant.

Exception Safety

No-throw guarantee.

Parameters

Name

Description

other

The pointer to construct from.


PrevUpHomeNext