| 9589 | } |
| 9590 | |
| 9591 | auto StringRef::c_str() const -> char const * { |
| 9592 | if (isSubstring()) |
| 9593 | const_cast<StringRef *>(this)->takeOwnership(); |
| 9594 | return m_start; |
| 9595 | } |
| 9596 | auto StringRef::currentData() const noexcept -> char const * { |
| 9597 | return m_start; |
| 9598 | } |
no test coverage detected