Skip to content
Snippets Groups Projects
Commit 9147d4fa authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL/ME] dynamic_cast is not needed anymore.

parent d328ba5b
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ void Mesh2MeshPropertyInterpolation::interpolatePropertiesForMesh(
const std::size_t n_nodes_in_vec(i_th_vec->size());
for (std::size_t j(0); j<n_nodes_in_vec; j++) {
MeshLib::Node const*const j_th_node((*i_th_vec)[j]);
out_src << nodes_cnt << " " << *(dynamic_cast<GeoLib::Point const*>(j_th_node)) << "\n";
out_src << nodes_cnt << " " << *j_th_node << "\n";
nodes_cnt++;
}
}
......
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