| 55 | |
| 56 | struct TfLiteIntArrayDeleter { |
| 57 | void operator()(TfLiteIntArray* a) { |
| 58 | if (a) TfLiteIntArrayFree(a); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | // Populates the size in bytes of a type into `bytes`. Returns kTfLiteOk for |
nothing calls this directly
no test coverage detected