| 71 | } |
| 72 | |
| 73 | InvokeResult InvokeResult::success() { |
| 74 | return InvokeResult(SUCCESS, 0); |
| 75 | } |
| 76 | |
| 77 | InvokeResult InvokeResult::failure(const char* description) { |
| 78 | return InvokeResult(FAILURE, description); |
nothing calls this directly
no outgoing calls
no test coverage detected