We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442eac6 commit d7e1668Copy full SHA for d7e1668
tensorflow_lite_support/c/common.cc
@@ -15,7 +15,7 @@ limitations under the License.
15
16
#include "tensorflow_lite_support/c/common.h"
17
18
-void TfLiteErrorDelete(TfLiteSupportError *error) {
+void TfLiteSupportErrorDelete(TfLiteSupportError *error) {
19
delete error->message;
20
delete error;
21
}
tensorflow_lite_support/c/common.h
@@ -194,7 +194,7 @@ typedef struct TfLiteSupportError {
194
char *message;
195
} TfLiteSupportError;
196
197
-void TfLiteErrorDelete(TfLiteSupportError *error);
+void TfLiteSupportErrorDelete(TfLiteSupportError *error);
198
199
#ifdef __cplusplus
200
} // extern "C"
0 commit comments