From b4711921608469674617cf71b77fbed1465df3b0 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 11 May 2023 09:39:44 -0700 Subject: [PATCH] Fix a comment --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index ba28b5f4..4cc47229 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1869,7 +1869,7 @@ FMT_END_EXPORT ``vformat``:: void vlog(string_view format_str, format_args args); // OK - format_args args = make_format_args(42); // Error: dangling reference + format_args args = make_format_args(); // Error: dangling reference \endrst */ template class basic_format_args {