| 570 | } |
| 571 | |
| 572 | auto operator = ( StringRef const &other ) noexcept -> StringRef& { |
| 573 | delete[] m_data; |
| 574 | m_data = nullptr; |
| 575 | m_start = other.m_start; |
| 576 | m_size = other.m_size; |
| 577 | return *this; |
| 578 | } |
| 579 | |
| 580 | operator std::string() const; |
| 581 |
nothing calls this directly
no outgoing calls
no test coverage detected