| 453 | } |
| 454 | |
| 455 | constexpr void assign_ptr(void* ptr) noexcept { |
| 456 | ptr_ = ptr; |
| 457 | } |
| 458 | constexpr void assign_ptr(void const* ptr) noexcept { |
| 459 | ptr_ = const_cast<void*>(ptr); |
| 460 | } |
nothing calls this directly
no outgoing calls
no test coverage detected