COMPMID-3630: Fix nightly build regarding move constructor
authorSang-Hoon Park <sang-hoon.park@arm.com>
Tue, 10 Nov 2020 09:55:03 +0000 (09:55 +0000)
committerSang-Hoon Park <sang-hoon.park@arm.com>
Tue, 10 Nov 2020 21:04:16 +0000 (21:04 +0000)
Fix failusre caused by FFT1D function.

Change-Id: I4c93d9082c1c1995225bdffc4138cfab93b261c1
Signed-off-by: Sang-Hoon Park <sang-hoon.park@arm.com>
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4359
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Manuel Bottini <manuel.bottini@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>

arm_compute/runtime/CL/functions/CLFFT1D.h

index 31a2cc6b0694f295db19d1d1438e9ac96bf1b545..e88ee7650dd8f224b86c239f80ba6239ef8b52a9 100644 (file)
@@ -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.