///////////////////////////////////////////////////////////////////////////
| 320 | |
| 321 | //////////////////////////////////////////////////////////////////////////////// |
| 322 | void Column::renderStringRight(std::vector<std::string>& lines, int width, Color& color, |
| 323 | const std::string& value) { |
| 324 | lines.push_back(color.colorize(rightJustify(value, width))); |
| 325 | } |
| 326 | |
| 327 | //////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected