From 355861f1ffe7b15c77cab6bddd15a0380d4e3396 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 20 Jul 2016 08:26:14 -0700 Subject: [PATCH] Document PrintfFormatter::format --- fmt/printf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fmt/printf.h b/fmt/printf.h index 3c3e32fe..78cda420 100644 --- a/fmt/printf.h +++ b/fmt/printf.h @@ -279,6 +279,7 @@ class PrintfFormatter : private internal::FormatterBase { explicit PrintfFormatter(const ArgList &args, BasicWriter &w) : FormatterBase(args), writer_(w) {} + /** Formats stored arguments and writes the output to the writer. */ FMT_API void format(BasicCStringRef format_str); };