| 18 | template<class T> |
| 19 | template<class O> |
| 20 | inline O* cpp::marshal::PointerReference<T>::FromBoxed(const Boxed<O>& inRHS) |
| 21 | { |
| 22 | if (nullptr == inRHS.mPtr) |
| 23 | { |
| 24 | return nullptr; |
| 25 | } |
| 26 | |
| 27 | return const_cast<O*>(&inRHS->value); |
| 28 | } |
| 29 | |
| 30 | template<class T> |
| 31 | template<class O> |
nothing calls this directly
no outgoing calls
no test coverage detected