svl/source/items/itemset.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 84eda8cdd76f04badaa07d0ef09d1de95da1518d Author: Mike Kaganski <mike.kagan...@collabora.com> AuthorDate: Sun Jun 13 17:53:39 2021 +0200 Commit: Justin Luth <justin_l...@sil.org> CommitDate: Fri Jun 18 13:51:17 2021 +0200 Avoid [-Werror=redundant-move] in GCC 9.3.0 Change-Id: I5ef8e094de76673c53b989fd659597b38c3f8d50 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117112 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> (cherry picked from commit f7c7e4c63f5479de66d2fbed9db34972a5bd05aa) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117415 Tested-by: Justin Luth <justin_l...@sil.org> Reviewed-by: Justin Luth <justin_l...@sil.org> diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index 3324f69e6122..207d0634a811 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1478,7 +1478,7 @@ std::unique_ptr<SfxItemSet> SfxAllItemSet::Clone(bool bItems, SfxItemPool *pToPo std::unique_ptr<SfxAllItemSet> pNewSet(new SfxAllItemSet( *pToPool )); if ( bItems ) pNewSet->Set( *this ); - return std::move(pNewSet); + return pNewSet; } else return std::unique_ptr<SfxItemSet>(bItems ? new SfxAllItemSet(*this) : new SfxAllItemSet(*m_pPool)); _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits