std::stacktrace_entry::stacktrace_entry - cppreference.com (original) (raw)
| constexpr stacktrace_entry() noexcept; | (1) | (since C++23) |
|---|---|---|
| constexpr stacktrace_entry( const stacktrace_entry& other ) noexcept; | (2) | (since C++23) |
Default constructor. Creates an empty
stacktrace_entry.Copy constructor. Creates a copy of
other.
[edit] Parameters
| other | - | another stacktrace_entry to copy from |
|---|
[edit] Notes
A non-empty stacktrace_entry can be obtained from a std::basic_stacktrace created by std::basic_stacktrace::current or a copy of such std::basic_stacktrace.
[edit] Example
[edit] See also
| | constructs a new source_location with implementation-defined values (public member function of std::source_location) [edit] | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |