get a pointer to the value (object)
| 19191 | |
| 19192 | /// get a pointer to the value (object) |
| 19193 | object_t* get_impl_ptr(object_t* /*unused*/) noexcept |
| 19194 | { |
| 19195 | return is_object() ? m_value.object : nullptr; |
| 19196 | } |
| 19197 | |
| 19198 | /// get a pointer to the value (object) |
| 19199 | constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept |
no test coverage detected