Merge branch 'delete_copy_assignment_multipoint' into 'master'

arraymem has deleted copy assignment

See merge request jschoeberl/netgen!177
This commit is contained in:
Joachim Schöberl 2019-07-12 12:17:08 +00:00
commit ae7f15cacb

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;
};