From 5fe01fd096df96a67b39538a7dc953746b3abc6b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 29 Jun 2014 11:59:38 -0700 Subject: [PATCH] Correct example. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 854cab01..e23107eb 100644 --- a/README.rst +++ b/README.rst @@ -103,7 +103,7 @@ which take arbitrary arguments: void ReportError(const char *format_str, const fmt::ArgList &args) { std::cerr << "Error: " << fmt::format(format_str, args) << std::endl; } - FMT_VARIADIC(void, ReportError) + FMT_VARIADIC(void, ReportError, const char *) ReportError("File not found: {}", path);