| 8614 | explicit Column(std::string const& text) { m_strings.push_back(text); } |
| 8615 | |
| 8616 | auto width(size_t newWidth) -> Column& { |
| 8617 | assert(newWidth > 0); |
| 8618 | m_width = newWidth; |
| 8619 | return *this; |
| 8620 | } |
| 8621 | auto indent(size_t newIndent) -> Column& { |
| 8622 | m_indent = newIndent; |
| 8623 | return *this; |
no outgoing calls
no test coverage detected