Skip to content
Snippets Groups Projects
Commit 3baf45ad authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[axisalignedcubegeometry] Remove copy assignment operator

* operator does the same as the default-generated one
* fixes compiler warning
parent 66796c4b
No related branches found
No related tags found
1 merge request!149[axisalignedcubegeometry] Remove copy assignment operator
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment