Skip to content
Snippets Groups Projects
Commit 35a244e3 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] BC; Remove explicit definition of move-ctor.

parent 60ce630f
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,11 @@ struct BoundaryConditionConfig final
{
}
BoundaryConditionConfig(BoundaryConditionConfig&& other)
: config(std::move(other.config)),
boundary_mesh(other.boundary_mesh),
component_id(other.component_id)
{
}
BoundaryConditionConfig(BoundaryConditionConfig&& other) = default;
BaseLib::ConfigTree config;
MeshLib::Mesh const& boundary_mesh;
boost::optional<int> const component_id;
};
} // ProcessLib
} // namespace ProcessLib
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