From ebdde65530c8819a16d558fc5ebb3cc519fbc344 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Mon, 8 Jul 2019 11:52:46 +0100 Subject: COMPMID-2432: Fix defects reported by Coverity Change-Id: I3db7bfffb8da95ca0b6fb0c13fef810756270b49 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1490 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/NECannyEdgeKernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/NEON/kernels/NECannyEdgeKernel.cpp') diff --git a/src/core/NEON/kernels/NECannyEdgeKernel.cpp b/src/core/NEON/kernels/NECannyEdgeKernel.cpp index 8d822bd701..094b77893a 100644 --- a/src/core/NEON/kernels/NECannyEdgeKernel.cpp +++ b/src/core/NEON/kernels/NECannyEdgeKernel.cpp @@ -931,7 +931,7 @@ void NEGradientKernel::configure(const ITensor *gx, const ITensor *gy, ITensor * AccessWindowHorizontal mag_access(_magnitude->info(), 0, num_elems_processed_per_iteration); AccessWindowHorizontal phase_access(_phase->info(), 0, num_elems_processed_per_iteration); - update_window_and_padding(win, gx_access, gy_access, mag_access, phase_access); + ARM_COMPUTE_UNUSED(update_window_and_padding(win, gx_access, gy_access, mag_access, phase_access)); mag_access.set_valid_region(win, _gx->info()->valid_region()); phase_access.set_valid_region(win, _gx->info()->valid_region()); -- cgit v1.2.1