From a4f378dcd39addd4a63db1c0848f2c120804f4eb Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 26 Apr 2019 14:54:54 +0100 Subject: COMPMID-1995: Fix clang-tidy warnings - Remove VirtualCall checks - Fix some unused variables errors - Use std::array insted of C style arrays - Various fixes Change-Id: Ife6170b7102de42b8f04e298dcf8476bf90779f0 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1049 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- src/core/NEON/kernels/NEMinMaxLocationKernel.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/core/NEON/kernels/NEMinMaxLocationKernel.cpp') diff --git a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp index befece2741..08b27e319e 100644 --- a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp +++ b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2018 ARM Limited. + * Copyright (c) 2016-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -152,7 +152,7 @@ void NEMinMaxKernel::minmax_U8(Window win) Iterator input(_input, win); - execute_window_loop(win, [&](const Coordinates & id) + execute_window_loop(win, [&](const Coordinates &) { int x = x_start; @@ -209,7 +209,7 @@ void NEMinMaxKernel::minmax_S16(Window win) Iterator input(_input, win); - execute_window_loop(win, [&](const Coordinates & id) + execute_window_loop(win, [&](const Coordinates &) { int x = x_start; const auto in_ptr = reinterpret_cast(input.ptr()); @@ -268,7 +268,7 @@ void NEMinMaxKernel::minmax_F32(Window win) Iterator input(_input, win); - execute_window_loop(win, [&](const Coordinates & id) + execute_window_loop(win, [&](const Coordinates &) { int x = x_start; const auto in_ptr = reinterpret_cast(input.ptr()); @@ -323,11 +323,11 @@ bool NEMinMaxLocationKernel::is_parallelisable() const template struct NEMinMaxLocationKernel::create_func_table> { - static const NEMinMaxLocationKernel::MinMaxLocFunction func_table[sizeof...(N)]; + static const std::array func_table; }; template -const NEMinMaxLocationKernel::MinMaxLocFunction NEMinMaxLocationKernel::create_func_table>::func_table[sizeof...(N)] = +const std::array NEMinMaxLocationKernel::create_func_table>::func_table { &NEMinMaxLocationKernel::minmax_loc... }; -- cgit v1.2.1