From 34890b88aebc9fab664cc9db09e90f0c73633dab Mon Sep 17 00:00:00 2001
From: Christoph Lehmann <christoph.lehmann@ufz.de>
Date: Fri, 28 Aug 2015 17:40:33 +0200
Subject: [PATCH] attempt to fix VC++ comilation error.

implemented move constructor explicitly.
---
 ProcessLib/ProcessVariable.cpp | 8 ++++++++
 ProcessLib/ProcessVariable.h   | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/ProcessLib/ProcessVariable.cpp b/ProcessLib/ProcessVariable.cpp
index aac8b94016b..a7e3e675d26 100644
--- a/ProcessLib/ProcessVariable.cpp
+++ b/ProcessLib/ProcessVariable.cpp
@@ -95,6 +95,14 @@ ProcessVariable::ProcessVariable(
     }
 }
 
+ProcessVariable::ProcessVariable(ProcessVariable&& other)
+    : _name(std::move(other._name)),
+      _mesh(other._mesh),
+      _initial_condition(std::move(other._initial_condition)),
+      _dirichlet_bcs(std::move(other._dirichlet_bcs)),
+      _neumann_bc_configs(std::move(other._neumann_bc_configs))
+{}
+
 std::string const& ProcessVariable::getName() const
 {
     return _name;
diff --git a/ProcessLib/ProcessVariable.h b/ProcessLib/ProcessVariable.h
index 3be7ea36894..559befaaa5a 100644
--- a/ProcessLib/ProcessVariable.h
+++ b/ProcessLib/ProcessVariable.h
@@ -52,7 +52,7 @@ public:
     ProcessVariable(ConfigTree const& config, MeshLib::Mesh const& mesh,
             GeoLib::GEOObjects const& geometries);
 
-    ProcessVariable(ProcessVariable&&) = default; // maybe circumvents VC++ compilation errors in combination with std::vector
+    ProcessVariable(ProcessVariable&&); // maybe circumvents VC++ compilation errors in combination with std::vector
 
     std::string const& getName() const;
 
-- 
GitLab