Skip to content

Commit d7e1668

Browse files
committed
Renamed TfLiteErrorDelete to TfLiteSupportErrorDelete
1 parent 442eac6 commit d7e1668

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tensorflow_lite_support/c/common.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ limitations under the License.
1515

1616
#include "tensorflow_lite_support/c/common.h"
1717

18-
void TfLiteErrorDelete(TfLiteSupportError *error) {
18+
void TfLiteSupportErrorDelete(TfLiteSupportError *error) {
1919
delete error->message;
2020
delete error;
2121
}

tensorflow_lite_support/c/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ typedef struct TfLiteSupportError {
194194
char *message;
195195
} TfLiteSupportError;
196196

197-
void TfLiteErrorDelete(TfLiteSupportError *error);
197+
void TfLiteSupportErrorDelete(TfLiteSupportError *error);
198198

199199
#ifdef __cplusplus
200200
} // extern "C"

0 commit comments

Comments
 (0)