| 74 | } |
| 75 | |
| 76 | bool compare(DelegateFunction<Args...>* _delegate) const |
| 77 | { |
| 78 | if (nullptr == _delegate) |
| 79 | return false; |
| 80 | return _delegate->mObject == mObject && _delegate->mFunctionPointer.compare(mFunctionPointer); |
| 81 | } |
| 82 | |
| 83 | bool compare(IDelegateUnlink* _unlink) const |
| 84 | { |
no outgoing calls
no test coverage detected