| 8302 | explicit Column(std::string const& text) { m_strings.push_back(text); } |
| 8303 | |
| 8304 | auto width(size_t newWidth) -> Column& { |
| 8305 | assert(newWidth > 0); |
| 8306 | m_width = newWidth; |
| 8307 | return *this; |
| 8308 | } |
| 8309 | auto indent(size_t newIndent) -> Column& { |
| 8310 | m_indent = newIndent; |
| 8311 | return *this; |
no outgoing calls
no test coverage detected