throwing_ptr
Smart pointers that throw on dereference if null
tests
Functions
compile_it.cpp File Reference
Go to the source code of this file.
Functions
int
main
(int, char **)
Function Documentation
◆
main()
int main
(
int
,
char **
)
Definition at line
9
of file
compile_it.cpp
.
9
{
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
}
throwing::unique_ptr::reset
void reset(pointer ptr=pointer()) TSP_NOEXCEPT
Replaces the managed object.
Definition:
unique_ptr.hpp:247
throwing::unique_ptr
unique_ptr that manages a single object
Definition:
unique_ptr.hpp:38
throwing::shared_ptr
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition:
shared_ptr.hpp:63
throwing::shared_ptr::reset
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition:
shared_ptr.hpp:356
Generated by
1.8.13