Revert "Small code removal"

This reverts commit b01f15cb26.
This commit is contained in:
gabime 2025-01-17 22:35:23 +02:00
parent b01f15cb26
commit 23b1c4c079

View File

@ -65,9 +65,7 @@ public:
}
private:
void pad_it(long count) {
dest_.append(spaces_.data(), spaces_.data() + static_cast<size_t>(count));
}
void pad_it(long count) { fmt_helper::append_string_view(string_view_t(spaces_.data(), static_cast<size_t>(count)), dest_); }
const padding_info &padinfo_;
memory_buf_t &dest_;