|  | Home | Libraries | People | FAQ | More | 
Constructor.
template< class T> storage_ptr( T* r);
            This constructs a non-owning pointer that points to the memory resource
            r. The caller is responsible
            for maintaining the lifetime of the pointed-to memory_resource.
          
std::is_convertible< T*, memory_resource* >::value == true
r != nullptr
No-throw guarantee.
| Name | Description | 
|---|---|
| 
                       | A pointer to the memory resource to use. This may not be null. |