From f1bd8153c838b0b86bfdc9912b5ad1b406236fd4 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Wed, 2 Oct 2024 17:24:24 -0400 Subject: [PATCH] ASSIMPWriter.cpp: fix "warning: unqualified call to 'std::move'" --- DDCAD/src/ASSIMPWriter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DDCAD/src/ASSIMPWriter.cpp b/DDCAD/src/ASSIMPWriter.cpp index f151eda92..50410df67 100644 --- a/DDCAD/src/ASSIMPWriter.cpp +++ b/DDCAD/src/ASSIMPWriter.cpp @@ -99,7 +99,7 @@ namespace { dd4hep::yes_no(tes->IsDefined())); } std::cout << std::flush; - return move(tes); + return std::move(tes); } std::unique_ptr 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 {