From 3baf45adb49e0305c873a39a8a60ae77c7749e8a Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Mon, 28 Sep 2020 07:48:54 +0200 Subject: [PATCH] [axisalignedcubegeometry] Remove copy assignment operator * operator does the same as the default-generated one * fixes compiler warning --- dune/geometry/axisalignedcubegeometry.hh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dune/geometry/axisalignedcubegeometry.hh b/dune/geometry/axisalignedcubegeometry.hh index d5e74636..b4d6ca09 100644 --- a/dune/geometry/axisalignedcubegeometry.hh +++ b/dune/geometry/axisalignedcubegeometry.hh @@ -131,15 +131,6 @@ namespace Dune { : lower_(lower) {} - /** \brief Assignment operator */ - AxisAlignedCubeGeometry& operator=(const AxisAlignedCubeGeometry& other) - { - lower_ = other.lower_; - upper_ = other.upper_; - axes_ = other.axes_; - return *this; - } - /** \brief Type of the cube. Here: a hypercube of the correct dimension */ GeometryType type() const { -- GitLab