aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorSang-Hoon Park <sang-hoon.park@arm.com>2021-01-14 14:52:03 +0000
committerSang-Hoon Park <sang-hoon.park@arm.com>2021-01-17 21:17:06 +0000
commit7229182c3b6c1bac3d59b6e5469171622c638f75 (patch)
tree2d522b20eafea8a8a72d54b0707c73e5be20b5f2 /arm_compute
parent6c25aad49787676c8dcaab74efd536690184ed04 (diff)
downloadComputeLibrary-7229182c3b6c1bac3d59b6e5469171622c638f75.tar.gz
Add missing std headers
Missing std headers - limits, algorithm, cstddef - are added where they have to be. Partially implements: COMPMID-3808 Change-Id: Ia31f75370f8440dcb753e5ac6eb2eac18e9c63f3 Signed-off-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4861 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/Dimensions.h1
-rw-r--r--arm_compute/core/ITensorPack.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/arm_compute/core/Dimensions.h b/arm_compute/core/Dimensions.h
index b4fde4d5f3..2ebfcd7f83 100644
--- a/arm_compute/core/Dimensions.h
+++ b/arm_compute/core/Dimensions.h
@@ -29,6 +29,7 @@
#include <algorithm>
#include <array>
#include <functional>
+#include <limits>
#include <numeric>
namespace arm_compute
diff --git a/arm_compute/core/ITensorPack.h b/arm_compute/core/ITensorPack.h
index 36b6aea490..c06e1d9a73 100644
--- a/arm_compute/core/ITensorPack.h
+++ b/arm_compute/core/ITensorPack.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -24,6 +24,7 @@
#ifndef ARM_COMPUTE_ITENSORPACK_H
#define ARM_COMPUTE_ITENSORPACK_H
+#include <cstddef>
#include <cstdint>
#include <map>