| 11469 | } |
| 11470 | |
| 11471 | auto StringRef::c_str() const -> char const* { |
| 11472 | if( isSubstring() ) |
| 11473 | const_cast<StringRef*>( this )->takeOwnership(); |
| 11474 | return m_start; |
| 11475 | } |
| 11476 | auto StringRef::currentData() const noexcept -> char const* { |
| 11477 | return m_start; |
| 11478 | } |
no test coverage detected