| 22 | #include <fmt/format.h> |
| 23 | |
| 24 | auto fmt::formatter<lcf::DBString>::format(const lcf::DBString& s, format_context& ctx) const -> decltype(ctx.out()) { |
| 25 | string_view sv(s.data(), s.size()); |
| 26 | return formatter<string_view>::format(sv, ctx); |
| 27 | } |
| 28 | |
| 29 | #endif |
no test coverage detected