| 6509 | explicit Column(std::string const& text) { m_strings.push_back(text); } |
| 6510 | |
| 6511 | auto width(size_t newWidth) -> Column& { |
| 6512 | assert(newWidth > 0); |
| 6513 | m_width = newWidth; |
| 6514 | return *this; |
| 6515 | } |
| 6516 | auto indent(size_t newIndent) -> Column& { |
| 6517 | m_indent = newIndent; |
| 6518 | return *this; |
no outgoing calls
no test coverage detected