throwing_ptr
Smart pointers that throw on dereference if null
Functions
compile_it.cpp File Reference

Go to the source code of this file.

Functions

int main (int, char **)
 

Function Documentation

◆ main()

int main ( int  ,
char **   
)

Definition at line 9 of file compile_it.cpp.

9  {
10  // Have one instance of each class in throwing::
12  ptr.reset();
14  uptr.reset();
15  return 0;
16 }
void reset(pointer ptr=pointer()) TSP_NOEXCEPT
Replaces the managed object.
Definition: unique_ptr.hpp:247
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356