From 33eba1049db0d6b3a78d4cabdcb71251889093fb Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 28 May 2024 11:39:49 -0700 Subject: [PATCH] Minor comment fix --- include/fmt/args.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/args.h b/include/fmt/args.h index fe066492..55ceba49 100644 --- a/include/fmt/args.h +++ b/include/fmt/args.h @@ -31,11 +31,11 @@ auto unwrap(const std::reference_wrapper& v) -> const T& { } // node is defined outside dynamic_arg_list to workaround a C2504 bug in MSVC -// 2022 (v17.10.0) +// 2022 (v17.10.0). // // Workaround for clang's -Wweak-vtables. Unlike for regular classes, for // templates it doesn't complain about inability to deduce single translation -// unit for placing vtable. So storage_node_base is made a fake template. +// unit for placing vtable. So node is made a fake template. template struct node { virtual ~node() = default; std::unique_ptr> next;