aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSang-Hoon Park <sang-hoon.park@arm.com>2020-11-10 09:55:03 +0000
committerSang-Hoon Park <sang-hoon.park@arm.com>2020-11-10 21:04:16 +0000
commit087ee3d521c1137b0bc611579eb1b94cc7813fb2 (patch)
treed066d88e17edbf22a7b04f4a8496ad31a4b86607
parent0c86265997f54853bb17fa34ea364ff7eb5d5bda (diff)
downloadComputeLibrary-087ee3d521c1137b0bc611579eb1b94cc7813fb2.tar.gz
COMPMID-3630: Fix nightly build regarding move constructor
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>
-rw-r--r--arm_compute/runtime/CL/functions/CLFFT1D.h4
1 files changed, 4 insertions, 0 deletions
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.