Skip to content

Commit 16a5a66

Browse files
lrdxgmcopybara-github
authored andcommitted
Run IWYU to fix includes.
PiperOrigin-RevId: 755900150
1 parent 5c3457a commit 16a5a66

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lite/examples/smart_reply/android/app/libs/cc/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ cc_library(
3232
deps = [
3333
"@org_tensorflow//tensorflow/lite:framework",
3434
"@org_tensorflow//tensorflow/lite:string_util",
35+
"@org_tensorflow//tensorflow/lite/c:c_api_types",
36+
"@org_tensorflow//tensorflow/lite/c:common",
3537
"@org_tensorflow//tensorflow/lite/kernels:builtin_ops",
3638
"@org_tensorflow//tensorflow/lite/kernels:kernel_util",
3739
"@com_google_absl//absl/strings",

lite/examples/smart_reply/android/app/libs/cc/ops/predict.cc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,15 @@ limitations under the License.
2828
//
2929

3030
#include <algorithm>
31-
#include <cstdlib>
31+
#include <cstdint>
3232
#include <cstdio>
33+
#include <cstdlib>
3334
#include <unordered_map>
35+
#include <utility>
3436
#include <vector>
3537

36-
#include "tensorflow/lite/context.h"
38+
#include "tensorflow/lite/c/c_api_types.h"
39+
#include "tensorflow/lite/c/common.h"
3740

3841
namespace tflite {
3942
namespace ops {

0 commit comments

Comments
 (0)