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