| 420 | // Manual ref-count management. Use with extreme caution! You probably don't need this. |
| 421 | alloc_slice& retain() noexcept {_FLBuf_Retain(buf); return *this;} |
| 422 | inline void release() noexcept {_FLBuf_Release(buf);} |
| 423 | static void retain(slice s) noexcept {((alloc_slice*)&s)->retain();} |
| 424 | static void release(slice s) noexcept {((alloc_slice*)&s)->release();} |
| 425 |
nothing calls this directly
no test coverage detected