forked from fmtlib/fmt
Fix compilation on gcc 4
This commit is contained in:
@ -3608,8 +3608,8 @@ inline format_to_n_result<OutputIt> vformat_to_n(
|
|||||||
template <typename OutputIt, typename... Args>
|
template <typename OutputIt, typename... Args>
|
||||||
inline format_to_n_result<OutputIt> format_to_n(
|
inline format_to_n_result<OutputIt> format_to_n(
|
||||||
OutputIt out, std::size_t n, string_view format_str, const Args &... args) {
|
OutputIt out, std::size_t n, string_view format_str, const Args &... args) {
|
||||||
return vformat_to_n(out, n, format_str,
|
return vformat_to_n<OutputIt>(
|
||||||
make_format_to_n_args<OutputIt>(args...));
|
out, n, format_str, make_format_to_n_args<OutputIt>(args...));
|
||||||
}
|
}
|
||||||
template <typename OutputIt, typename... Args>
|
template <typename OutputIt, typename... Args>
|
||||||
inline format_to_n_result<OutputIt> format_to_n(
|
inline format_to_n_result<OutputIt> format_to_n(
|
||||||
|
Reference in New Issue
Block a user