Ensure that ErrorReporter is non-null.
| 34 | namespace { |
| 35 | // Ensure that ErrorReporter is non-null. |
| 36 | ErrorReporter* ValidateErrorReporter(ErrorReporter* e) { |
| 37 | return e ? e : DefaultErrorReporter(); |
| 38 | } |
| 39 | } // namespace |
| 40 | |
| 41 | const char* kEmptyTensorName = ""; |
no test coverage detected