aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h b/arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h
index e9f3e93474..86e6300130 100644
--- a/arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h
+++ b/arm_compute/runtime/NEON/functions/NELocallyConnectedLayer.h
@@ -55,12 +55,12 @@ public:
NELocallyConnectedLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
/** Prevent instances of this class from being copied (As this class contains pointers) */
NELocallyConnectedLayer(const NELocallyConnectedLayer &) = delete;
- /** Default move constructor */
- NELocallyConnectedLayer(NELocallyConnectedLayer &&) = default;
+ /** Prevent instances of this class from being moved (As this class contains pointers) */
+ NELocallyConnectedLayer(NELocallyConnectedLayer &&) = delete;
/** Prevent instances of this class from being copied (As this class contains pointers) */
NELocallyConnectedLayer &operator=(const NELocallyConnectedLayer &) = delete;
- /** Default move assignment operator */
- NELocallyConnectedLayer &operator=(NELocallyConnectedLayer &&) = default;
+ /** Prevent instances of this class from being moved (As this class contains pointers) */
+ NELocallyConnectedLayer &operator=(NELocallyConnectedLayer &&) = delete;
/** Default destructor */
~NELocallyConnectedLayer();
/** Set the input and output tensors.