Document PrintfFormatter::format

This commit is contained in:
Victor Zverovich 2016-07-20 08:26:14 -07:00
parent ab054532ce
commit 355861f1ff

View File

@ -279,6 +279,7 @@ class PrintfFormatter : private internal::FormatterBase {
explicit PrintfFormatter(const ArgList &args, BasicWriter<Char> &w)
: FormatterBase(args), writer_(w) {}
/** Formats stored arguments and writes the output to the writer. */
FMT_API void format(BasicCStringRef<Char> format_str);
};