| 145 | } |
| 146 | |
| 147 | cef_string_t CefStr::forward() |
| 148 | { |
| 149 | auto dtor_ = this->dtor; |
| 150 | this->dtor = nullptr; |
| 151 | |
| 152 | return cef_string_t{ str, length, dtor_ }; |
| 153 | } |
| 154 | |
| 155 | const CefStrBase &CefStr::borrow(const cef_string_t *s) |
| 156 | { |
no outgoing calls
no test coverage detected