throwing_ptr
Smart pointers that throw on dereference if null
tests
compile_fail
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];
10
throwing::shared_ptr<int[]>
sp(p);
11
return
*p = sp[0];
12
}
throwing::shared_ptr
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition:
shared_ptr.hpp:63
Generated by
1.8.13