| 18 | namespace tflite { |
| 19 | |
| 20 | int ErrorReporter::Report(const char* format, ...) { |
| 21 | va_list args; |
| 22 | va_start(args, format); |
| 23 | int code = Report(format, args); |
| 24 | va_end(args); |
| 25 | return code; |
| 26 | } |
| 27 | |
| 28 | // TODO(aselle): Make the name of ReportError on context the same, so |
| 29 | // we can use the ensure functions w/o a context and w/ a reporter. |
no outgoing calls
no test coverage detected