From df43db067a4b2ca3658cbf6b7673242ba594bd04 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 20 Apr 2022 17:09:35 +0200 Subject: [PATCH] Use std::move instead of std::forward --- Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h index d574baa6156..1813483f032 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h @@ -347,7 +347,7 @@ public: Property_map(const Property_map& pm) = default; Property_map(Property_map&& pm) noexcept - : Base(std::forward(pm)) + : Base(std::move(pm)) {} Property_map& operator=(const Property_map& pm)