std::basic_stacktrace<Allocator>::~basic_stacktrace
From cppreference.com
< cpp | utility | basic stacktrace
C++
Diagnostics library
|
|
std::basic_stacktrace
Member functions | ||||
basic_stacktrace::~basic_stacktrace | ||||
Iterators | ||||
Capacity | ||||
Element access | ||||
Modifiers | ||||
Non-member functions | ||||
Helper classes | ||||
~basic_stacktrace(); | (since C++23) | |
Destructs the basic_stacktrace
. The destructors of the std::stacktrace_entry objects it holds are called and the used storage is deallocated.
[edit]Complexity
Linear in the size of the basic_stacktrace
.