Get rid of FMT_VARIADIC_VOID

This commit is contained in:
Victor Zverovich
2016-08-27 08:16:49 -07:00
parent 4ece95a754
commit 0d8aca8de3
5 changed files with 12 additions and 27 deletions
+1 -1
View File
@@ -1566,7 +1566,7 @@ TEST(StrTest, Convert) {
std::string vformat_message(int id, const char *format, fmt::format_args args) {
MemoryWriter w;
w.write("[{}] ", id);
w.write(format, args);
w.vwrite(format, args);
return w.str();
}