| 9583 | } |
| 9584 | |
| 9585 | void StringRef::swap(StringRef &other) noexcept { |
| 9586 | std::swap(m_start, other.m_start); |
| 9587 | std::swap(m_size, other.m_size); |
| 9588 | std::swap(m_data, other.m_data); |
| 9589 | } |
| 9590 | |
| 9591 | auto StringRef::c_str() const -> char const * { |
| 9592 | if (isSubstring()) |
no test coverage detected