throwing_ptr
Smart pointers that throw on dereference if null
tests
compile_fail
unique_ptr_s_copy_assignment.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
/
unique_ptr
.
hpp
>
7
8
int
main
() {
9
// cannot assign from unique_ptr to another
10
throwing
::
unique_ptr
<
int
> from;
11
throwing
::
unique_ptr
<
int
> to;
12
to = from;
13
return
0;
14
}
throwing::unique_ptr
unique_ptr that manages a single object
Definition:
unique_ptr.hpp:38
main
int main()
Definition:
unique_ptr_s_operator.cpp:8
throwing
Implementations of throwing::shared_ptr, throwing::unique_ptr and related.
Definition:
null_ptr_exception.hpp:15
Generated by
1.8.13