mirror of https://github.com/CGAL/cgal
Use std::move instead of std::forward
This commit is contained in:
parent
090c61c6b7
commit
df43db067a
|
|
@ -347,7 +347,7 @@ public:
|
|||
Property_map(const Property_map& pm) = default;
|
||||
|
||||
Property_map(Property_map&& pm) noexcept
|
||||
: Base(std::forward<Property_map>(pm))
|
||||
: Base(std::move(pm))
|
||||
{}
|
||||
|
||||
Property_map& operator=(const Property_map& pm)
|
||||
|
|
|
|||
Loading…
Reference in New Issue