| 297 | } |
| 298 | |
| 299 | HOSTDEVICE inline void pstring::resize_uninitialized(size_t new_size) { |
| 300 | PD_PString_ResizeUninitialized(&pstr_, new_size); |
| 301 | } |
| 302 | |
| 303 | HOSTDEVICE inline void pstring::clear() noexcept { |
| 304 | PD_PString_ResizeUninitialized(&pstr_, 0); |
nothing calls this directly
no test coverage detected