From 087ee3d521c1137b0bc611579eb1b94cc7813fb2 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Tue, 10 Nov 2020 09:55:03 +0000 Subject: COMPMID-3630: Fix nightly build regarding move constructor Fix failusre caused by FFT1D function. Change-Id: I4c93d9082c1c1995225bdffc4138cfab93b261c1 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4359 Tested-by: Arm Jenkins Reviewed-by: Manuel Bottini Comments-Addressed: Arm Jenkins --- arm_compute/runtime/CL/functions/CLFFT1D.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arm_compute/runtime/CL/functions/CLFFT1D.h b/arm_compute/runtime/CL/functions/CLFFT1D.h index 31a2cc6b06..e88ee7650d 100644 --- a/arm_compute/runtime/CL/functions/CLFFT1D.h +++ b/arm_compute/runtime/CL/functions/CLFFT1D.h @@ -53,6 +53,10 @@ public: CLFFT1D(const CLFFT1D &) = delete; /** Prevent instances of this class from being copied */ CLFFT1D &operator=(const CLFFT1D &) = delete; + /** Default move constructor */ + CLFFT1D(CLFFT1D &&) = default; + /** Default move assignment operator */ + CLFFT1D &operator=(CLFFT1D &&) = default; /** Default destructor */ ~CLFFT1D(); /** Initialise the function's source, destinations and border mode. -- cgit v1.2.1