| 44 | } |
| 45 | |
| 46 | static bool IsOk(const TF_Status* s) { |
| 47 | if (TF_GetCode(s) == TF_OK) return true; |
| 48 | VLOG(2) << TF_Message(s); |
| 49 | return false; |
| 50 | } |
| 51 | |
| 52 | static bool IsOk(const Status& s) { |
| 53 | if (s.ok()) return true; |
nothing calls this directly
no test coverage detected