aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
index 378fce70b3..97b1a47f64 100644
--- a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
@@ -82,10 +82,10 @@ public:
NEDeconvolutionLayer(const NEDeconvolutionLayer &) = delete;
/** Prevent instances of this class from being copied (As this class contains pointers) */
NEDeconvolutionLayer &operator=(const NEDeconvolutionLayer &) = delete;
- /** Allow instances of this class to be moved */
- NEDeconvolutionLayer(NEDeconvolutionLayer &&) = default;
- /** Allow instances of this class to be moved */
- NEDeconvolutionLayer &operator=(NEDeconvolutionLayer &&) = default;
+ /** Prevent instances of this class from being moved (As this class contains pointers) */
+ NEDeconvolutionLayer(NEDeconvolutionLayer &&) = delete;
+ /** Prevent instances of this class from being moved (As this class contains pointers) */
+ NEDeconvolutionLayer &operator=(NEDeconvolutionLayer &&) = delete;
/** Default destructor */
virtual ~NEDeconvolutionLayer() = default;