From a9337395a24f20b400c08b7758d03b6f788fb8c2 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 24 Aug 2019 08:46:15 -0700 Subject: [PATCH] Remove unused variable --- include/fmt/compile.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/compile.h b/include/fmt/compile.h index a752ffb4..98cd9509 100644 --- a/include/fmt/compile.h +++ b/include/fmt/compile.h @@ -592,7 +592,6 @@ OutputIt format_to(OutputIt out, const CompiledFormat& cf, using char_type = typename CompiledFormat::char_type; using range = internal::output_range; using context = format_context_t; - format_arg_store as(args...); return cf.template vformat_to( range(out), {make_format_args(args...)}); }