| 5200 | } |
| 5201 | |
| 5202 | auto width(size_t newWidth) -> Column & { |
| 5203 | assert(newWidth > 0); |
| 5204 | m_width = newWidth; |
| 5205 | return *this; |
| 5206 | } |
| 5207 | auto indent(size_t newIndent) -> Column & { |
| 5208 | m_indent = newIndent; |
| 5209 | return *this; |
no outgoing calls
no test coverage detected