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