| 75 | } |
| 76 | |
| 77 | InvokeResult InvokeResult::failure(const char* description) { |
| 78 | return InvokeResult(FAILURE, description); |
| 79 | } |
| 80 | |
| 81 | InvokeResult InvokeResult::failure(const std::string& description) { |
| 82 | return InvokeResult(FAILURE, description.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected