| 63 | } |
| 64 | |
| 65 | int __Compare(const ::hx::Object* other) const override |
| 66 | { |
| 67 | auto otherCallable = dynamic_cast<const ErasedCallable_obj*>(other); |
| 68 | if (nullptr == otherCallable) |
| 69 | { |
| 70 | return -1; |
| 71 | } |
| 72 | |
| 73 | return callableId() == otherCallable->callableId() ? 0 : -1; |
| 74 | } |
| 75 | }; |
| 76 | |
| 77 | template<class TReturn, class... TArgs> |
nothing calls this directly
no test coverage detected