removed useless std::move on const and unmovable objects

This commit is contained in:
asapelkin
2019-10-24 01:00:39 +03:00
committed by wmayer
parent 1987ecabdd
commit 5a75d2ff45
4 changed files with 5 additions and 5 deletions

View File

@@ -267,7 +267,7 @@ public:
documentObjectNameSet = other.documentObjectNameSet;
localProperty = other.localProperty;
_cache = std::move(other._cache);
_hash = std::move(other._hash);
_hash = other._hash;
return *this;
}