summaryrefslogtreecommitdiff
path: root/unotest/source/cpp/getargument.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotest/source/cpp/getargument.hxx')
-rw-r--r--unotest/source/cpp/getargument.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/unotest/source/cpp/getargument.hxx b/unotest/source/cpp/getargument.hxx
index 97f2b89f32d1..e72eb59438a0 100644
--- a/unotest/source/cpp/getargument.hxx
+++ b/unotest/source/cpp/getargument.hxx
@@ -22,6 +22,8 @@
#include <sal/config.h>
+#include <string_view>
+
#include <rtl/ustring.hxx>
namespace test {
@@ -31,7 +33,7 @@ namespace detail {
// Obtain the value of an argument tunneled in via an "arg-<name>" bootstrap
// variable:
bool getArgument(
- OUString const & name, OUString * value);
+ std::u16string_view name, OUString * value);
}