std::stacktrace_entry:: stacktrace_entry
From cppreference.net
<
cpp
|
utility
|
stacktrace entry
C++
Diagnostics library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::stacktrace_entry
| Member functions | ||||
|
stacktrace_entry::stacktrace_entry
|
||||
| Observers | ||||
| Query | ||||
| Non-member functions | ||||
| Helper classes | ||||
|
constexpr
stacktrace_entry
(
)
noexcept
;
|
(1) | (C++23以降) |
|
constexpr
stacktrace_entry
(
const
stacktrace_entry
&
other
)
noexcept
;
|
(2) | (C++23以降) |
1)
デフォルトコンストラクタ。空の
stacktrace_entry
を生成する。
2)
コピーコンストラクタ。
other
のコピーを作成します。
目次 |
パラメータ
| その他 | - |
コピー元となる別の
stacktrace_entry
|
注記
空でない
stacktrace_entry
は、
std::basic_stacktrace::current
によって作成された、またはそのコピーである
std::basic_stacktrace
から取得できます。
例
|
このセクションは不完全です
理由: 例がありません |
関連項目
実装定義の値で新しい
source_location
を構築する
(
std::source_location
の公開メンバ関数)
|