MakeArg -> make_arg. Move printf out of Writer.

This commit is contained in:
Victor Zverovich
2014-06-29 19:52:26 -07:00
parent f6d481f120
commit 21111cc954
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1119,7 +1119,7 @@ void fmt::print(std::FILE *f, StringRef format, const ArgList &args) {
void fmt::printf(StringRef format, const ArgList &args) {
Writer w;
w.printf(format, args);
printf(w, format, args);
std::fwrite(w.data(), 1, w.size(), stdout);
}