From f6bec1dd5146816399592334f7cfdb1c7b86b1cc Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Tue, 10 Nov 2020 09:52:34 +0000 Subject: COMPMID-3958: Fix build error with Werror=1 Remove unused variable in anonymouse namespace. Change-Id: Id9775cd7982f2a2ebf68f20e0c4e33013c3382a0 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4361 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp b/src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp index 6e5322cbc6..90a81b30c9 100644 --- a/src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp +++ b/src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp @@ -39,7 +39,6 @@ namespace arm_compute namespace { constexpr auto data_layout = DataLayout::NHWC; -const size_t batch_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES); const size_t width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH); const size_t height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT); const size_t channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL); -- cgit v1.2.1