| 8621 | explicit Column(std::string const& text) { m_strings.push_back(text); } |
| 8622 | |
| 8623 | auto width(size_t newWidth) -> Column& { |
| 8624 | assert(newWidth > 0); |
| 8625 | m_width = newWidth; |
| 8626 | return *this; |
| 8627 | } |
| 8628 | auto indent(size_t newIndent) -> Column& { |
| 8629 | m_indent = newIndent; |
| 8630 | return *this; |
no outgoing calls
no test coverage detected