| 1801 | class BlockProgressScaleWriter { |
| 1802 | public: |
| 1803 | BlockProgressScaleWriter(std::ostream &os, size_t bar_width) : os(os), bar_width(bar_width) {} |
| 1804 | |
| 1805 | std::ostream &write(float progress) { |
| 1806 | std::string fill_text{"█"}; |
nothing calls this directly
no outgoing calls
no test coverage detected