You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
365 B
C++

// SPDX-License-Identifier: BSD-2-Clause
// author: Max Kellermann <max.kellermann@gmail.com>
#include "ExceptionFormatter.hxx"
#include "util/Exception.hxx"
auto
fmt::formatter<std::exception_ptr>::format(std::exception_ptr e, format_context &ctx) const
-> format_context::iterator
{
return formatter<string_view>::format(GetFullMessage(std::move(e)), ctx);
}