aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime')
-rw-r--r--arm_compute/runtime/CL/CLRuntimeContext.h6
-rw-r--r--arm_compute/runtime/CL/CLTensor.h10
-rw-r--r--arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h6
-rw-r--r--arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h6
4 files changed, 8 insertions, 20 deletions
diff --git a/arm_compute/runtime/CL/CLRuntimeContext.h b/arm_compute/runtime/CL/CLRuntimeContext.h
index 5d4a2779a1..791d1deaa7 100644
--- a/arm_compute/runtime/CL/CLRuntimeContext.h
+++ b/arm_compute/runtime/CL/CLRuntimeContext.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -44,12 +44,8 @@ public:
~CLRuntimeContext() = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLRuntimeContext(const CLRuntimeContext &) = delete;
- /** Default move constructor */
- CLRuntimeContext(CLRuntimeContext &&) = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLRuntimeContext &operator=(const CLRuntimeContext &) = delete;
- /** Default move assignment operator */
- CLRuntimeContext &operator=(CLRuntimeContext &&) = default;
/** CPU Scheduler setter */
void set_gpu_scheduler(CLScheduler *scheduler);
diff --git a/arm_compute/runtime/CL/CLTensor.h b/arm_compute/runtime/CL/CLTensor.h
index aaf46fbce0..102cb3636a 100644
--- a/arm_compute/runtime/CL/CLTensor.h
+++ b/arm_compute/runtime/CL/CLTensor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2019 ARM Limited.
+ * Copyright (c) 2016-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -52,12 +52,12 @@ public:
/** Destructor */
~CLTensor() = default;
- /** Default copy constructor */
- CLTensor(const CLTensor &) = default;
+ /** Prevent copying by construction */
+ CLTensor(const CLTensor &) = delete;
/** Default move constructor */
CLTensor(CLTensor &&) = default;
- /** Default copy assignment */
- CLTensor &operator=(const CLTensor &) = default;
+ /** Prevent copaingy by assignment */
+ CLTensor &operator=(const CLTensor &) = delete;
/** Default move assignment operator */
CLTensor &operator=(CLTensor &&) = default;
diff --git a/arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h b/arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h
index 8c91a5d686..fb6967f7e5 100644
--- a/arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h
+++ b/arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -65,12 +65,8 @@ public:
CLGenerateProposalsLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLGenerateProposalsLayer(const CLGenerateProposalsLayer &) = delete;
- /** Default move constructor */
- CLGenerateProposalsLayer(CLGenerateProposalsLayer &&) = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
CLGenerateProposalsLayer &operator=(const CLGenerateProposalsLayer &) = delete;
- /** Default move assignment operator */
- CLGenerateProposalsLayer &operator=(CLGenerateProposalsLayer &&) = default;
/** Set the input and output tensors.
*
diff --git a/arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h b/arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h
index 0e236891d1..7c470fbaf0 100644
--- a/arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -64,12 +64,8 @@ public:
NEGenerateProposalsLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
/** Prevent instances of this class from being copied (As this class contains pointers) */
NEGenerateProposalsLayer(const NEGenerateProposalsLayer &) = delete;
- /** Default move constructor */
- NEGenerateProposalsLayer(NEGenerateProposalsLayer &&) = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
NEGenerateProposalsLayer &operator=(const NEGenerateProposalsLayer &) = delete;
- /** Default move assignment operator */
- NEGenerateProposalsLayer &operator=(NEGenerateProposalsLayer &&) = default;
/** Set the input and output tensors.
*