aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/NEMinMaxLocationKernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEMinMaxLocationKernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp
index b90e81339b..befece2741 100644
--- a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp
+++ b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp
@@ -212,7 +212,7 @@ void NEMinMaxKernel::minmax_S16(Window win)
execute_window_loop(win, [&](const Coordinates & id)
{
int x = x_start;
- const auto in_ptr = reinterpret_cast<const int16_t *const>(input.ptr());
+ const auto in_ptr = reinterpret_cast<const int16_t *>(input.ptr());
// Vector loop
for(; x <= x_end - 16; x += 16)
@@ -271,7 +271,7 @@ void NEMinMaxKernel::minmax_F32(Window win)
execute_window_loop(win, [&](const Coordinates & id)
{
int x = x_start;
- const auto in_ptr = reinterpret_cast<const float *const>(input.ptr());
+ const auto in_ptr = reinterpret_cast<const float *>(input.ptr());
// Vector loop
for(; x <= x_end - 8; x += 8)