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