[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - svl/source

Mike Kaganski (via logerrit) logerrit at kemper.freedesktop.org
Fri Jun 18 11:51:50 UTC 2021


 svl/source/items/itemset.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 84eda8cdd76f04badaa07d0ef09d1de95da1518d
Author:     Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Sun Jun 13 17:53:39 2021 +0200
Commit:     Justin Luth <justin_luth at 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.kaganski at collabora.com>
    (cherry picked from commit f7c7e4c63f5479de66d2fbed9db34972a5bd05aa)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117415
    Tested-by: Justin Luth <justin_luth at sil.org>
    Reviewed-by: Justin Luth <justin_luth at 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));


More information about the Libreoffice-commits mailing list