Parameterize v*printf on string type (#920)

This commit is contained in:
Victor Zverovich
2018-10-25 07:20:02 -07:00
parent 61e6d2e38c
commit 0a96c032b9
6 changed files with 37 additions and 27 deletions

View File

@@ -1398,7 +1398,7 @@ typename std::enable_if<
const S &format_str,
basic_format_args<typename buffer_context<FMT_CHAR(S)>::type> args) {
internal::container_buffer<Container> buf(internal::get_container(out));
vformat_to(buf, to_string_view(format_str), args);
internal::vformat_to(buf, to_string_view(format_str), args);
return out;
}