summaryrefslogtreecommitdiff
path: root/sal/rtl/bootstrap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/bootstrap.cxx')
-rw-r--r--sal/rtl/bootstrap.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 68e219406cc4..12558d319e44 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -39,6 +39,7 @@
#include <o3tl/lru_map.hxx>
#include <o3tl/string_view.hxx>
+#include <utility>
#include <vector>
#include <algorithm>
#include <cstddef>
@@ -121,9 +122,9 @@ struct rtl_bootstrap_NameValue
rtl_bootstrap_NameValue()
{}
- rtl_bootstrap_NameValue(OUString const & name, OUString const & value )
- : sName( name ),
- sValue( value )
+ rtl_bootstrap_NameValue(OUString name, OUString value )
+ : sName(std::move( name )),
+ sValue(std::move( value ))
{}
};