From 59c7db8e12e85980b1d0479a5ffd5478286f9165 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Fri, 3 Jun 2016 09:32:43 +0200
Subject: [PATCH] [GL] Surface: del. default implemented methods.

I.e., delete move constr., assignment and move assignment operator.
---
 GeoLib/Surface.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/GeoLib/Surface.h b/GeoLib/Surface.h
index 494b9574ee9..e94fe2eca15 100644
--- a/GeoLib/Surface.h
+++ b/GeoLib/Surface.h
@@ -39,6 +39,10 @@ public:
     Surface(Surface const& src);
     ~Surface();
 
+    Surface(Surface && src) = delete;
+    Surface& operator=(Surface const& src) = delete;
+    Surface& operator=(Surface && src) = delete;
+
     /// return a geometry type
     GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; }
     /**
-- 
GitLab