| 11195 | } |
| 11196 | |
| 11197 | void StringRef::swap( StringRef& other ) noexcept { |
| 11198 | std::swap( m_start, other.m_start ); |
| 11199 | std::swap( m_size, other.m_size ); |
| 11200 | std::swap( m_data, other.m_data ); |
| 11201 | } |
| 11202 | |
| 11203 | auto StringRef::c_str() const -> char const* { |
| 11204 | if( isSubstring() ) |
no outgoing calls
no test coverage detected