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