Commit a9337395 authored by Victor Zverovich's avatar Victor Zverovich

Remove unused variable

parent 562a9f49
...@@ -592,7 +592,6 @@ OutputIt format_to(OutputIt out, const CompiledFormat& cf, ...@@ -592,7 +592,6 @@ OutputIt format_to(OutputIt out, const CompiledFormat& cf,
using char_type = typename CompiledFormat::char_type; using char_type = typename CompiledFormat::char_type;
using range = internal::output_range<OutputIt, char_type>; using range = internal::output_range<OutputIt, char_type>;
using context = format_context_t<OutputIt, char_type>; using context = format_context_t<OutputIt, char_type>;
format_arg_store<context, Args...> as(args...);
return cf.template vformat_to<range, context>( return cf.template vformat_to<range, context>(
range(out), {make_format_args<context>(args...)}); range(out), {make_format_args<context>(args...)});
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment