arraymem has deleted copy assignment

This commit is contained in:
Christopher Lackner 2019-07-12 13:32:21 +02:00
parent 164609d63a
commit ee4dce0eab

View File

@ -111,7 +111,7 @@ namespace netgen
MultiPointGeomInfo () = default;
MultiPointGeomInfo (const MultiPointGeomInfo&) = default;
MultiPointGeomInfo (MultiPointGeomInfo &&) = default;
MultiPointGeomInfo & operator= (const MultiPointGeomInfo&) = default;
MultiPointGeomInfo & operator= (const MultiPointGeomInfo&) = delete;
MultiPointGeomInfo & operator= (MultiPointGeomInfo&&) = default;
};