From 19872a69a9c408646cb2f6c1de8a0e8dc6df277a Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Mon, 13 May 2019 08:48:18 -0700 Subject: [PATCH] Include standard library headers as appropriate. PiperOrigin-RevId: 247942631 --- tensorflow/lite/examples/label_image/get_top_n_impl.h | 1 + tensorflow/lite/kernels/internal/types.h | 1 + tensorflow/lite/mutable_op_resolver.h | 2 ++ tensorflow/lite/schema/builtin_ops_header/generator.h | 1 + tensorflow/lite/tools/benchmark/benchmark_params.h | 1 + 5 files changed, 6 insertions(+) diff --git a/tensorflow/lite/examples/label_image/get_top_n_impl.h b/tensorflow/lite/examples/label_image/get_top_n_impl.h index 563ac09114c..b2afdbec1cc 100644 --- a/tensorflow/lite/examples/label_image/get_top_n_impl.h +++ b/tensorflow/lite/examples/label_image/get_top_n_impl.h @@ -17,6 +17,7 @@ limitations under the License. #define TENSORFLOW_LITE_EXAMPLES_LABEL_IMAGE_GET_TOP_N_IMPL_H_ #include +#include #include namespace tflite { diff --git a/tensorflow/lite/kernels/internal/types.h b/tensorflow/lite/kernels/internal/types.h index 4ae704cb257..e246bfb9668 100644 --- a/tensorflow/lite/kernels/internal/types.h +++ b/tensorflow/lite/kernels/internal/types.h @@ -17,6 +17,7 @@ limitations under the License. #include #include +#include #include "tensorflow/lite/kernels/internal/compatibility.h" diff --git a/tensorflow/lite/mutable_op_resolver.h b/tensorflow/lite/mutable_op_resolver.h index b5700595499..9e41ee86423 100644 --- a/tensorflow/lite/mutable_op_resolver.h +++ b/tensorflow/lite/mutable_op_resolver.h @@ -15,7 +15,9 @@ limitations under the License. #ifndef TENSORFLOW_LITE_MUTABLE_OP_RESOLVER_H_ #define TENSORFLOW_LITE_MUTABLE_OP_RESOLVER_H_ +#include #include + #include "tensorflow/lite/core/api/op_resolver.h" #include "tensorflow/lite/util.h" diff --git a/tensorflow/lite/schema/builtin_ops_header/generator.h b/tensorflow/lite/schema/builtin_ops_header/generator.h index 8c9383a992d..eca4fe889bf 100644 --- a/tensorflow/lite/schema/builtin_ops_header/generator.h +++ b/tensorflow/lite/schema/builtin_ops_header/generator.h @@ -17,6 +17,7 @@ limitations under the License. #define TENSORFLOW_LITE_SCHEMA_BUILTIN_OPS_HEADER_GENERATOR_H_ #include +#include namespace tflite { namespace builtin_ops_header { diff --git a/tensorflow/lite/tools/benchmark/benchmark_params.h b/tensorflow/lite/tools/benchmark/benchmark_params.h index 594baa5b4ec..c591cc2445b 100644 --- a/tensorflow/lite/tools/benchmark/benchmark_params.h +++ b/tensorflow/lite/tools/benchmark/benchmark_params.h @@ -18,6 +18,7 @@ limitations under the License. #include #include #include +#include #include #include "tensorflow/lite/tools/benchmark/logging.h"