| 260 | static uintptr_t CopyFrom(uintptr_t other) noexcept { return Own(other); } |
| 261 | |
| 262 | static uintptr_t MoveFrom(uintptr_t& other) noexcept { |
| 263 | return std::exchange(other, kNone); |
| 264 | } |
| 265 | |
| 266 | static void Destroy(uintptr_t ptr) noexcept { Unown(ptr); } |
| 267 |
no outgoing calls
no test coverage detected