From 299fdd31bd8e1add3ac557a5e630de55b1b6659c Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 1 May 2019 13:03:59 +0100 Subject: COMPMID-2177 Fix clang warnings Change-Id: I4beacfd714ee3ed771fd174cce5d8009a2961380 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1065 Reviewed-by: Giuseppe Rossini Tested-by: Arm Jenkins --- arm_compute/runtime/NEON/functions/NECropResize.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/NEON/functions/NECropResize.h') diff --git a/arm_compute/runtime/NEON/functions/NECropResize.h b/arm_compute/runtime/NEON/functions/NECropResize.h index e790e68b5f..53e8f7f7a5 100644 --- a/arm_compute/runtime/NEON/functions/NECropResize.h +++ b/arm_compute/runtime/NEON/functions/NECropResize.h @@ -98,10 +98,10 @@ public: InterpolationPolicy _method; float _extrapolation_value; - std::unique_ptr _crop; - std::unique_ptr _scale; - std::unique_ptr _crop_results{ nullptr }; - std::unique_ptr _scaled_results{ nullptr }; + std::vector> _crop; + std::vector> _scale; + std::vector> _crop_results; + std::vector> _scaled_results; }; } // namespace arm_compute #endif /* __ARM_COMPUTE_NEON_CROP_RESIZE_H__ */ -- cgit v1.2.1