diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-06 19:45:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-06 21:17:18 +0200 |
commit | 6d200d8e739595bd4c6310bede7d66e3c05fbb85 (patch) | |
tree | 21fb6b69a606d341ca93ae900b91d3d687ddcc1b /ucb/source/ucp/file | |
parent | 7c3990c38ddc5e69c89d9cb0c1a521f144e852f7 (diff) |
loplugin:moveparam in ucbhelper
Change-Id: I1b9cc0366fb8e9b2525a56816ae4f76737a31b73
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123184
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/ucp/file')
-rw-r--r-- | ucb/source/ucp/file/filrset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx index 716c9bbe4b89..74531e226a23 100644 --- a/ucb/source/ucp/file/filrset.cxx +++ b/ucb/source/ucp/file/filrset.cxx @@ -603,7 +603,7 @@ XResultSet_impl::getMetaData() return new ::ucbhelper::ResultSetMetaData( m_pMyShell->m_xContext, m_sProperty, - aColumnData ); + std::move(aColumnData) ); } return new ::ucbhelper::ResultSetMetaData( m_pMyShell->m_xContext, m_sProperty ); |