| 10 | |
| 11 | template<class T> |
| 12 | inline T cpp::marshal::ValueType<T>::FromBoxed(const Boxed<T>& inRHS) |
| 13 | { |
| 14 | if (nullptr == inRHS.mPtr) |
| 15 | { |
| 16 | ::hx::NullReference("ValueType", true); |
| 17 | } |
| 18 | |
| 19 | return inRHS->value; |
| 20 | } |
| 21 | |
| 22 | template<class T> |
| 23 | inline T cpp::marshal::ValueType<T>::FromReference(const ValueReference<T>& inRHS) |
nothing calls this directly
no test coverage detected