///////////////////////////////////////////////////////////////////////////
| 314 | |
| 315 | //////////////////////////////////////////////////////////////////////////////// |
| 316 | void Column::renderStringLeft(std::vector<std::string>& lines, int width, Color& color, |
| 317 | const std::string& value) { |
| 318 | lines.push_back(color.colorize(leftJustify(value, width))); |
| 319 | } |
| 320 | |
| 321 | //////////////////////////////////////////////////////////////////////////////// |
| 322 | void Column::renderStringRight(std::vector<std::string>& lines, int width, Color& color, |
nothing calls this directly
no outgoing calls
no test coverage detected