| 4 | |
| 5 | template<class T> |
| 6 | inline T cpp::marshal::ValueType<T>::FromDynamic(const Dynamic& inRHS) |
| 7 | { |
| 8 | return FromBoxed(inRHS.StaticCast<Boxed<T>>()); |
| 9 | } |
| 10 | |
| 11 | template<class T> |
| 12 | inline T cpp::marshal::ValueType<T>::FromBoxed(const Boxed<T>& inRHS) |
nothing calls this directly
no outgoing calls
no test coverage detected