Namespaces
Variants

std::stacktrace_entry:: stacktrace_entry

From cppreference.net
constexpr stacktrace_entry ( ) noexcept ;
(1) (C++23 이후)
constexpr stacktrace_entry ( const stacktrace_entry & other ) noexcept ;
(2) (C++23 이후)
1) 기본 생성자. 빈 stacktrace_entry 를 생성합니다.
2) 복사 생성자. other 의 복사본을 생성합니다.

목차

매개변수

other - 복사할 다른 stacktrace_entry

참고 사항

비어 있지 않은 stacktrace_entry std::basic_stacktrace::current 에 의해 생성된 std::basic_stacktrace 또는 그러한 std::basic_stacktrace 의 복사본으로부터 얻을 수 있습니다.

예제

참고 항목

구현 정의 값으로 새로운 source_location 을 생성함
( std::source_location 의 public 멤버 함수)