| 6727 | explicit Column(std::string const& text) { m_strings.push_back(text); } |
| 6728 | |
| 6729 | auto width(size_t newWidth) -> Column& { |
| 6730 | assert(newWidth > 0); |
| 6731 | m_width = newWidth; |
| 6732 | return *this; |
| 6733 | } |
| 6734 | auto indent(size_t newIndent) -> Column& { |
| 6735 | m_indent = newIndent; |
| 6736 | return *this; |
no outgoing calls
no test coverage detected