Rename set_fill to copy_fill_from

This commit is contained in:
Victor Zverovich
2025-01-11 09:22:15 -08:00
parent 5750f434fa
commit 586ea06f02
3 changed files with 3 additions and 3 deletions

View File

@@ -3968,7 +3968,7 @@ template <typename T, typename Char = char> struct nested_formatter {
write(basic_appender<Char>(buf));
auto specs = format_specs();
specs.width = width_;
specs.set_fill(specs_);
specs.copy_fill_from(specs_);
specs.set_align(specs_.align());
return detail::write<Char>(
ctx.out(), basic_string_view<Char>(buf.data(), buf.size()), specs);