throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_to_array.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 
8 int main() {
9  int *p = new int[10];
10  throwing::shared_ptr<int[]> sp(p);
11  return *p = sp[0];
12 }
int main()
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.