Update fmt to 6.2.0 (#4718)

* Update fmt to 6.2.0
This commit is contained in:
peterbell10
2020-05-05 22:52:14 +01:00
committed by GitHub
parent 8e2dfce84b
commit 57952505e5
25 changed files with 255 additions and 117 deletions
+2 -2
View File
@@ -13,9 +13,9 @@
////////////////////////////////////////////////////////////////////////////////
// cCommandOutputCallback:
void cCommandOutputCallback::Out(const char * a_Fmt, fmt::ArgList args)
void cCommandOutputCallback::vOut(const char * a_Fmt, fmt::printf_args args)
{
AString Output = Printf(a_Fmt, args);
AString Output = ::vPrintf(a_Fmt, args);
Output.append("\n");
Out(Output);
}