get a pointer to the value (object)
| 16969 | |
| 16970 | /// get a pointer to the value (object) |
| 16971 | object_t* get_impl_ptr(object_t* /*unused*/) noexcept |
| 16972 | { |
| 16973 | return is_object() ? m_value.object : nullptr; |
| 16974 | } |
| 16975 | |
| 16976 | /// get a pointer to the value (object) |
| 16977 | constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept |
no test coverage detected