diff --git a/include/fmt/format.h b/include/fmt/format.h index 3b1ebe59..ca45906d 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3248,9 +3248,9 @@ template <> struct formatter { specs_.precision, specs_.precision_ref, ctx); using range_type = internal::output_range; - internal::basic_writer writer(range_type(ctx.out())); - writer.write_bytes(b.data_, specs_); - return writer.out(); + internal::basic_writer writer_(range_type(ctx.out())); + writer_.write_bytes(b.data_, specs_); + return writer_.out(); } private: