| 230 | |
| 231 | |
| 232 | inline Pointer operator=( const Pointer &inRHS ) { return ptr = inRHS.ptr; } |
| 233 | inline Dynamic operator=( Dynamic &inValue ) |
| 234 | { |
| 235 | ptr = inValue==null() ? 0 : (T*) inValue->__GetHandle(); |
nothing calls this directly
no test coverage detected