| 13273 | } |
| 13274 | |
| 13275 | void StringRef::swap( StringRef& other ) noexcept { |
| 13276 | std::swap( m_start, other.m_start ); |
| 13277 | std::swap( m_size, other.m_size ); |
| 13278 | std::swap( m_data, other.m_data ); |
| 13279 | } |
| 13280 | |
| 13281 | auto StringRef::c_str() const -> char const* { |
| 13282 | if( !isSubstring() ) |
no test coverage detected