std::stacktrace_entry::stacktrace_entry
From cppreference.com
< cpp | utility | stacktrace entry
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Diagnostics library
(until C++20*)
(C++17)(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Exception handling failures
(C++11)
(until C++17*)
(until C++17*)
(until C++17*)
(until C++17*)
(TM TS)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++23)
(C++23)
(C++26)
(C++26)
(C++26)
std::stacktrace_entry
stacktrace_entry::stacktrace_entry
constexpr stacktrace_entry() noexcept;
(1)
(since C++23)
constexpr stacktrace_entry( const stacktrace_entry& other ) noexcept;
(2)
(since C++23)
1) Default constructor. Creates an empty
stacktrace_entry
.2) Copy constructor. Creates a copy of
other
.Contents
[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
This section is incomplete
Reason: no example
Reason: no example
[edit] See also
constructs a new
(public member function of
source_location
with implementation-defined values (public member function of
std::source_location
) [edit]