Parameterize v*printf on string type (#920)

This commit is contained in:
Victor Zverovich
2018-10-25 13:52:08 -07:00
parent 61e6d2e38c
commit 0a96c032b9
6 changed files with 37 additions and 27 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ inline void vprint(std::basic_ostream<Char> &os,
basic_string_view<Char> format_str,
basic_format_args<typename buffer_context<Char>::type> args) {
basic_memory_buffer<Char> buffer;
vformat_to(buffer, format_str, args);
internal::vformat_to(buffer, format_str, args);
internal::write(os, buffer);
}
/**