From ee4dce0eab4df2573427b9e78b2d6cb70fa1918d Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Fri, 12 Jul 2019 13:32:21 +0200 Subject: [PATCH] arraymem has deleted copy assignment --- libsrc/meshing/meshtype.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/meshing/meshtype.hpp b/libsrc/meshing/meshtype.hpp index dc297506..68fee518 100644 --- a/libsrc/meshing/meshtype.hpp +++ b/libsrc/meshing/meshtype.hpp @@ -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; };