From cc88914904434e7b0620f714fe438d21126243a8 Mon Sep 17 00:00:00 2001 From: Thomas Khyn Date: Mon, 2 Jun 2025 03:50:14 +1200 Subject: [PATCH] Export fmt::dynamic_format_arg_store in fmt module (#4459) --- include/fmt/args.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/args.h b/include/fmt/args.h index 3ff47880..d8fe241c 100644 --- a/include/fmt/args.h +++ b/include/fmt/args.h @@ -71,7 +71,7 @@ class dynamic_arg_list { * It can be implicitly converted into `fmt::basic_format_args` for passing * into type-erased formatting functions such as `fmt::vformat`. */ -template class dynamic_format_arg_store { +FMT_EXPORT template class dynamic_format_arg_store { private: using char_type = typename Context::char_type;