diff options
Diffstat (limited to 'svl/source/misc/lockfilecommon.cxx')
-rw-r--r-- | svl/source/misc/lockfilecommon.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svl/source/misc/lockfilecommon.cxx b/svl/source/misc/lockfilecommon.cxx index baed8636ecfb..982ce7ce02da 100644 --- a/svl/source/misc/lockfilecommon.cxx +++ b/svl/source/misc/lockfilecommon.cxx @@ -41,14 +41,15 @@ #include <salhelper/linkhelper.hxx> #include <svl/lockfilecommon.hxx> +#include <utility> using namespace ::com::sun::star; namespace svt { -LockFileCommon::LockFileCommon(const OUString& aLockFileURL) - : m_aURL(aLockFileURL) +LockFileCommon::LockFileCommon(OUString aLockFileURL) + : m_aURL(std::move(aLockFileURL)) { } |