From abe132dfacc6640061b09719998e140a5f89fcf5 Mon Sep 17 00:00:00 2001 From: xla authors Date: Fri, 10 Jan 2025 17:30:09 -0800 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 714281767 --- xla/shape.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xla/shape.h b/xla/shape.h index 75c8c0f825627..7d35bf470eab2 100644 --- a/xla/shape.h +++ b/xla/shape.h @@ -44,9 +44,9 @@ class Shape { Shape(); ~Shape(); Shape(const Shape&); - Shape(Shape&&); + Shape(Shape&&) noexcept; Shape& operator=(const Shape&); - Shape& operator=(Shape&&); + Shape& operator=(Shape&&) noexcept; // Construct a shape from a ShapeProto. explicit Shape(const ShapeProto& shape_proto); @@ -371,9 +371,9 @@ class ProgramShape { ProgramShape(); ~ProgramShape(); ProgramShape(const ProgramShape&); - ProgramShape(ProgramShape&&); + ProgramShape(ProgramShape&&) noexcept; ProgramShape& operator=(const ProgramShape&); - ProgramShape& operator=(ProgramShape&&); + ProgramShape& operator=(ProgramShape&&) noexcept; // Creates a ProgramShape from a ProgramShapeProto protobuf. explicit ProgramShape(const ProgramShapeProto& program_shape_proto);