【发布时间】:2021-08-04 22:57:12
【问题描述】:
我正在努力让 boost 的堆栈跟踪库与 fmt 互操作,问题似乎是我不能完全专门化 boost::stacktrace::basic_stacktrace。有人知道根本问题是什么吗?
#include <fmt/core.h>
#include <boost/stacktrace.hpp>
using BoostTraceStackFrame = std::remove_reference_t<decltype(boost::stacktrace::stacktrace().as_vector().front())>;
template <> struct fmt::formatter<BoostTraceStackFrame> : formatter<string_view>
{
template <typename FORMAT_CONTEXT> auto format(const BoostTraceStackFrame &rhs, FORMAT_CONTEXT &ctx)
{
return fmt::format(ctx.out(), "{}:{}\n", rhs.source_file(), rhs.source_line());
}
};
using BoostTraceType = std::remove_reference_t<decltype(boost::stacktrace::stacktrace())>;
template <> struct fmt::formatter<BoostTraceType> : formatter<string_view>
{
//possibly BoostTraceType = boost::stacktrace::basic_stacktrace ?
template <typename FORMAT_CONTEXT> auto format(const BoostTraceType &rhs, FORMAT_CONTEXT &ctx)
{
return fmt::format(ctx.out(), "{}", fmt::join(rhs.as_vector(), "\n"));
}
};
int main()
{
auto trace = boost::stacktrace::stacktrace();
fmt::print("Foo trace {}",trace);
}
【问题讨论】:
标签: c++ boost stack-trace c++20 fmt