| 439 | } |
| 440 | |
| 441 | inline Function operator=( const Function &inRHS ) { return call = inRHS.call; } |
| 442 | inline Dynamic operator=( Dynamic &inValue ) |
| 443 | { |
| 444 | call = inValue==null() ? 0 : (T*) inValue->__GetHandle(); |
nothing calls this directly
no test coverage detected