| 21 | |
| 22 | template<class T> |
| 23 | inline T cpp::marshal::ValueType<T>::FromReference(const ValueReference<T>& inRHS) |
| 24 | { |
| 25 | if (nullptr == inRHS.ptr) |
| 26 | { |
| 27 | ::hx::NullReference("ValueType", true); |
| 28 | } |
| 29 | |
| 30 | return *inRHS.ptr; |
| 31 | } |
| 32 | |
| 33 | template<class T> |
| 34 | inline cpp::marshal::ValueType<T>::ValueType() : value() {} |
nothing calls this directly
no test coverage detected