throwing_ptr
Smart pointers that throw on dereference if null
tests
compile_fail
Functions
unique_ptr_a_copy_assignment.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
unique_ptr_a_copy_assignment.cpp
.
8
{
9
// cannot assign from unique_ptr to another (array version)
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
Generated by
1.8.13