Use std::move instead of std::forward

This commit is contained in:
Laurent Rineau 2022-04-20 17:09:35 +02:00
parent 090c61c6b7
commit df43db067a
1 changed files with 1 additions and 1 deletions

View File

@ -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)