| 5196 | using const_iterator = iterator; |
| 5197 | |
| 5198 | explicit Column(std::string const &text) { |
| 5199 | m_strings.push_back(text); |
| 5200 | } |
| 5201 | |
| 5202 | auto width(size_t newWidth) -> Column & { |
| 5203 | assert(newWidth > 0); |
nothing calls this directly
no outgoing calls
no test coverage detected