namespace std {
struct formatter<stacktrace_entry>;
}
概要
stacktrace_entry
クラスに対するstd::formatter
クラステンプレートの特殊化。
フォーマットフラグとしては、以下を使用できる:
[[fill] [align] [width]]
例
#include <print>
#include <stacktrace>
void g() {
std::stacktrace st = std::stacktrace::current(0, 1);
std::stacktrace_entry entry = st[0];
std::println("{}", entry);
std::println("{: >30}", entry);
}
void f() {
g();
}
int main() {
f();
}
出力
g() at /app/example.cpp:5
g() at /app/example.cpp:5
バージョン
言語
- C++23
処理系
- Clang: ??
- GCC: 14 ✅
- Visual C++: ??
関連項目
std::format()
(フォーマットの詳細)