aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/Graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/Graph.h')
-rw-r--r--arm_compute/graph/Graph.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/arm_compute/graph/Graph.h b/arm_compute/graph/Graph.h
index c0c812988d..dce92c67f1 100644
--- a/arm_compute/graph/Graph.h
+++ b/arm_compute/graph/Graph.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -64,10 +64,10 @@ public:
Graph(const Graph &) = delete;
/** Prevent instances of this class from being copy assigned (As this class contains pointers) */
Graph &operator=(const Graph &) = delete;
- /** Allow instances of this class to be moved */
- Graph(Graph &&) = default;
- /** Allow instances of this class to be move assigned */
- Graph &operator=(Graph &&) = default;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ Graph(Graph &&) = delete;
+ /** Prevent instances of this class from being moved (As this class contains non movable objects) */
+ Graph &operator=(Graph &&) = delete;
/** Adds a node to the graph
*
* @note Models a single output node