Skip to content
Snippets Groups Projects
Commit 18c76375 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin Committed by Andre Sailer
Browse files

ASSIMPWriter.cpp: fix "warning: unqualified call to 'std::move'"

parent df370056
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ namespace {
dd4hep::yes_no(tes->IsDefined()));
}
std::cout << std::flush;
return move(tes);
return std::move(tes);
}
std::unique_ptr<TGeoTessellated> TessellateShape::build_mesh(int id, const std::string& name, TGeoShape* shape) {
......@@ -191,7 +191,7 @@ namespace {
#endif
}
}
return close_tessellated(id, shape, nskip, move(tes));
return close_tessellated(id, shape, nskip, std::move(tes));
}
RootCsg::TBaseMesh* TessellateShape::make_mesh(TGeoShape* sh) 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