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 --- arm_compute/runtime/CL/functions/CLCropResize.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/CL') diff --git a/arm_compute/runtime/CL/functions/CLCropResize.h b/arm_compute/runtime/CL/functions/CLCropResize.h index d6c9fed928..9ec2071a4f 100644 --- a/arm_compute/runtime/CL/functions/CLCropResize.h +++ b/arm_compute/runtime/CL/functions/CLCropResize.h @@ -105,10 +105,10 @@ public: InterpolationPolicy _method; float _extrapolation_value; - std::unique_ptr _scale; - std::unique_ptr _copy; - std::unique_ptr _crop_results{ nullptr }; - std::unique_ptr _scaled_results{ nullptr }; + std::vector> _scale; + std::vector> _copy; + std::vector> _crop_results; + std::vector> _scaled_results; }; } // namespace arm_compute #endif /* __ARM_COMPUTE_CL_CROP_RESIZE_H__ */ -- cgit v1.2.1