From 2788609b8a10306e9eae47543b39812a7b075aaa Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Thu, 25 Feb 2021 20:15:01 +0000 Subject: Port ClTranspose to new API Partially Resolves: COMPMID-4277 (1/2) Signed-off-by: Teresa Charlin Change-Id: I704c2303135cbe1ba46d2fd5642c84c562204bc7 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5194 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- arm_compute/runtime/CL/functions/CLPermute.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/CL/functions/CLPermute.h') diff --git a/arm_compute/runtime/CL/functions/CLPermute.h b/arm_compute/runtime/CL/functions/CLPermute.h index bcd9566fbf..e59cca2a67 100644 --- a/arm_compute/runtime/CL/functions/CLPermute.h +++ b/arm_compute/runtime/CL/functions/CLPermute.h @@ -46,11 +46,11 @@ public: /** Prevent instances of this class from being copied (As this class contains pointers) */ CLPermute(const CLPermute &) = delete; /** Default move constructor */ - CLPermute(CLPermute &&); + CLPermute(CLPermute &&) = default; /** Prevent instances of this class from being copied (As this class contains pointers) */ CLPermute &operator=(const CLPermute &) = delete; /** Default move assignment operator */ - CLPermute &operator=(CLPermute &&); + CLPermute &operator=(CLPermute &&) = default; /** Set the input and output tensors. * * @note Arbitrary permutation vectors are supported with rank not greater than 4 -- cgit v1.2.1