throwing_ptr
Smart pointers that throw on dereference if null
compile_it.cpp
Go to the documentation of this file.
1 // Copyright Claudio Bantaloukas 2017-2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include "throwing/shared_ptr.hpp"
7 #include "throwing/unique_ptr.hpp"
8 
9 int main(int, char **) {
10  // Have one instance of each class in throwing::
11  throwing::shared_ptr<int> ptr;
12  ptr.reset();
13  throwing::unique_ptr<int> uptr;
14  uptr.reset();
15  return 0;
16 }
void reset(pointer ptr=pointer()) TSP_NOEXCEPT
Replaces the managed object.
Definition: unique_ptr.hpp:247
int main(int, char **)
Definition: compile_it.cpp:9
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
Implementations of throwing::shared_ptr, throwing::unique_ptr and related.
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356