aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Strides.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Strides.h')
-rw-r--r--arm_compute/core/Strides.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/core/Strides.h b/arm_compute/core/Strides.h
index 265799e41e..627b219987 100644
--- a/arm_compute/core/Strides.h
+++ b/arm_compute/core/Strides.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 Arm Limited.
+ * Copyright (c) 2017-2019, 2023 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -30,6 +30,7 @@
#include <algorithm>
#include <array>
#include <cstddef>
+#include <cstdint>
namespace arm_compute
{
@@ -42,8 +43,7 @@ public:
* @param[in] strides Values to initialize the strides.
*/
template <typename... Ts>
- constexpr Strides(Ts... strides)
- : Dimensions{ strides... }
+ constexpr Strides(Ts... strides) : Dimensions{strides...}
{
}
/** Allow instances of this class to be copy constructed */