Skip to content

Commit

Permalink
Apply clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans-Martin B. Jensen committed Apr 15, 2024
1 parent 53cc296 commit 703068d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/fmt/xchar.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ template <typename OutputIt, typename S, typename... T,
typename Char = detail::format_string_char_t<S>,
FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
detail::is_exotic_char<Char>::value)>
inline auto format_to(OutputIt out, const S& format_str, T&&... args) -> OutputIt {
inline auto format_to(OutputIt out, const S& format_str, T&&... args)
-> OutputIt {
return vformat_to(out, fmt::basic_string_view<Char>(format_str),
fmt::make_format_args<buffered_context<Char>>(args...));
}
Expand Down

0 comments on commit 703068d

Please sign in to comment.