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

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 8 of file shared_ptr_to_array.cpp.

8  {
9  int *p = new int[10];
11  return *p = sp[0];
12 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63