11struct fmt::formatter<juce::String> : fmt::formatter<std::string_view>
13 auto format (
const juce::String &s, fmt::format_context &ctx)
const
14 -> format_context::iterator
16 return fmt::formatter<std::string_view>::format (
17 std::string_view (s.toUTF8 ()), ctx);