Destructor; automatically calls `handle::dec_ref()`
| 393 | object(object &&other) noexcept : handle(other) { other.m_ptr = nullptr; } |
| 394 | /// Destructor; automatically calls `handle::dec_ref()` |
| 395 | ~object() { dec_ref(); } |
| 396 | |
| 397 | /** \rst |
| 398 | Resets the internal pointer to ``nullptr`` without decreasing the |
nothing calls this directly
no outgoing calls
no test coverage detected