From 770dfeb04b6fd89afde2005bd46caa6ff0858f3e Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 4 Nov 2020 18:55:34 +0000 Subject: COMPMID-3953: Move assignment operator failures on android Signed-off-by: Michalis Spyrou Change-Id: Id37d90e29749c50eb58084ae9a1ef78e84dbdcd7 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4326 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h') diff --git a/arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h b/arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h index 0fb3edd490..f273e55e77 100644 --- a/arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h +++ b/arm_compute/runtime/NEON/functions/NEHOGMultiDetection.h @@ -62,12 +62,12 @@ public: NEHOGMultiDetection(std::shared_ptr memory_manager = nullptr); /** Prevent instances of this class from being copied (As this class contains pointers) */ NEHOGMultiDetection(const NEHOGMultiDetection &) = delete; - /** Default move constructor */ - NEHOGMultiDetection(NEHOGMultiDetection &&) = default; + /** Prevent instances of this class from being moved (As this class contains pointers) */ + NEHOGMultiDetection(NEHOGMultiDetection &&) = delete; /** Prevent instances of this class from being copied (As this class contains pointers) */ NEHOGMultiDetection &operator=(const NEHOGMultiDetection &) = delete; - /** Default move assignment operator */ - NEHOGMultiDetection &operator=(NEHOGMultiDetection &&) = default; + /** Prevent instances of this class from being moved (As this class contains pointers) */ + NEHOGMultiDetection &operator=(NEHOGMultiDetection &&) = delete; /** Default destructor */ ~NEHOGMultiDetection(); /** Initialise the function's source, destination, detection window strides, border mode, threshold and non-maxima suppression -- cgit v1.2.1