| 444 | /// as well to the inplace storage. |
| 445 | union data_accessor { |
| 446 | data_accessor() = default; |
| 447 | explicit constexpr data_accessor(std::nullptr_t) noexcept : ptr_(nullptr) { |
| 448 | } |
| 449 | explicit constexpr data_accessor(void* ptr) noexcept : ptr_(ptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected