| 862 | } |
| 863 | |
| 864 | void Subgraph::ReportErrorImpl(const char* format, va_list args) { |
| 865 | error_reporter_->Report(format, args); |
| 866 | } |
| 867 | |
| 868 | void Subgraph::ReportErrorC(TfLiteContext* context, const char* format, ...) { |
| 869 | va_list args; |
no test coverage detected