-Werror,-Wpessimizing-move

Change-Id: Ic20ae0c0534220a2613b73a2bd2e1aa277aecce9
This commit is contained in:
Stephan Bergmann 2016-05-03 17:14:46 +02:00
parent c4acf692e8
commit 04baf07416

View File

@ -145,7 +145,7 @@ std::unique_ptr<FilterCache> FilterCache::clone() const
pClone->m_lChangedFrameLoaders = m_lChangedFrameLoaders;
pClone->m_lChangedContentHandlers = m_lChangedContentHandlers;
return std::move(pClone);
return pClone;
// <- SAFE ----------------------------------
}