| 11463 | } |
| 11464 | |
| 11465 | void StringRef::swap( StringRef& other ) noexcept { |
| 11466 | std::swap( m_start, other.m_start ); |
| 11467 | std::swap( m_size, other.m_size ); |
| 11468 | std::swap( m_data, other.m_data ); |
| 11469 | } |
| 11470 | |
| 11471 | auto StringRef::c_str() const -> char const* { |
| 11472 | if( isSubstring() ) |
no test coverage detected