aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Helpers.h')
-rw-r--r--arm_compute/core/Helpers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/core/Helpers.h b/arm_compute/core/Helpers.h
index d056f937da..48ac38b170 100644
--- a/arm_compute/core/Helpers.h
+++ b/arm_compute/core/Helpers.h
@@ -376,7 +376,7 @@ public:
*
* @return The current position of the iterator in bytes relative to the first element.
*/
- constexpr int offset() const;
+ constexpr size_t offset() const;
/** Return a pointer to the current pixel.
*
@@ -403,8 +403,8 @@ private:
{
}
- int _dim_start;
- int _stride;
+ size_t _dim_start;
+ size_t _stride;
};
std::array<Dimension, Coordinates::num_max_dimensions> _dims;