aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h')
-rw-r--r--arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h b/arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h
index de02784b25..597a093d70 100644
--- a/arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h
+++ b/arm_compute/core/NEON/kernels/NEMinMaxLocationKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2019 ARM Limited.
+ * Copyright (c) 2016-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -49,10 +49,10 @@ public:
NEMinMaxKernel(const NEMinMaxKernel &) = delete;
/** Prevent instances of this class from being copied (As this class contains pointers) */
NEMinMaxKernel &operator=(const NEMinMaxKernel &) = delete;
- /** Allow instances of this class to be moved */
- NEMinMaxKernel(NEMinMaxKernel &&) = default;
- /** Allow instances of this class to be moved */
- NEMinMaxKernel &operator=(NEMinMaxKernel &&) = default;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ NEMinMaxKernel(NEMinMaxKernel &&) = delete;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ NEMinMaxKernel &operator=(NEMinMaxKernel &&) = delete;
/** Default destructor */
~NEMinMaxKernel() = default;