aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/shape_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/shape_tree.h')
-rw-r--r--tensorflow/compiler/xla/shape_tree.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/shape_tree.h b/tensorflow/compiler/xla/shape_tree.h
index a898a4d375..64a36471b9 100644
--- a/tensorflow/compiler/xla/shape_tree.h
+++ b/tensorflow/compiler/xla/shape_tree.h
@@ -116,7 +116,6 @@ class ShapeTree {
ShapeTree(const Shape* shape, const T& init_value);
ShapeTree(const ShapeTree& other) { *this = other; }
- ShapeTree(ShapeTree&&) = default;
ShapeTree& operator=(const ShapeTree& other) {
root_ = other.root_;
@@ -133,8 +132,6 @@ class ShapeTree {
return *this;
}
- ShapeTree& operator=(ShapeTree&& other) = default;
-
// Returns the data element associated with the array in the shape at the
// given index (see ShapeUtil::GetSubshape for how indexes are defined).
const T& element(const ShapeIndex& index) const;