| 24 | |
| 25 | template<class T> |
| 26 | value |
| 27 | value_ref::from_const(void const* p, storage_ptr sp) |
| 28 | { |
| 29 | return value_from( *reinterpret_cast<T const*>(p), std::move(sp) ); |
| 30 | } |
| 31 | |
| 32 | template<class T> |
| 33 | value |
nothing calls this directly
no test coverage detected