| 5342 | } |
| 5343 | |
| 5344 | auto indent() const -> size_t { |
| 5345 | auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos; |
| 5346 | return initial == std::string::npos ? m_column.m_indent : initial; |
| 5347 | } |
| 5348 | |
| 5349 | auto addIndentAndSuffix(std::string const &plain) const -> std::string { |
| 5350 | return std::string( indent(), ' ' ) + (m_suffix ? plain + "-" : plain); |
nothing calls this directly
no outgoing calls
no test coverage detected