Skip to content
Snippets Groups Projects
Commit 34890b88 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

attempt to fix VC++ comilation error.

implemented move constructor explicitly.
parent 6441925d
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,14 @@ ProcessVariable::ProcessVariable( ...@@ -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 std::string const& ProcessVariable::getName() const
{ {
return _name; return _name;
......
...@@ -52,7 +52,7 @@ public: ...@@ -52,7 +52,7 @@ public:
ProcessVariable(ConfigTree const& config, MeshLib::Mesh const& mesh, ProcessVariable(ConfigTree const& config, MeshLib::Mesh const& mesh,
GeoLib::GEOObjects const& geometries); 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; std::string const& getName() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment