| 33 | SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } |
| 34 | operator T&() const { return *pointer.ptr; } |
| 35 | T *operator&() { return pointer.ptr; } |
| 36 | }; |
| 37 | |
| 38 | template <typename T> T SwigValueInit() { |
nothing calls this directly
no outgoing calls
no test coverage detected