| 11201 | } |
| 11202 | |
| 11203 | auto StringRef::c_str() const -> char const* { |
| 11204 | if( isSubstring() ) |
| 11205 | const_cast<StringRef*>( this )->takeOwnership(); |
| 11206 | return m_start; |
| 11207 | } |
| 11208 | auto StringRef::currentData() const noexcept -> char const* { |
| 11209 | return m_start; |
| 11210 | } |
no test coverage detected