| 21 | |
| 22 | template<class T> |
| 23 | inline cpp::marshal::Boxed_obj<T>::Boxed_obj() : value() |
| 24 | { |
| 25 | setFinaliser(std::is_destructible<T>{}); |
| 26 | } |
| 27 | |
| 28 | template<class T> |
| 29 | inline cpp::marshal::Boxed_obj<T>::Boxed_obj(T* ptr) : value(*ptr) |
nothing calls this directly
no outgoing calls
no test coverage detected