| 425 | } |
| 426 | |
| 427 | auto operator = ( StringRef const &other ) noexcept -> StringRef& { |
| 428 | delete[] m_data; |
| 429 | m_data = nullptr; |
| 430 | m_start = other.m_start; |
| 431 | m_size = other.m_size; |
| 432 | return *this; |
| 433 | } |
| 434 | |
| 435 | operator std::string() const; |
| 436 |
nothing calls this directly
no outgoing calls
no test coverage detected