diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-10 15:32:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-11 08:05:57 +0100 |
commit | 4f36ea1a1ecde6c000aeb878ab46747edd16c8f0 (patch) | |
tree | cf1255b7830eae84bd113088092b6d3a1b4e1791 /include/tools | |
parent | 16d1041c604a28e0a8c1a5a5feb4d3dfb7f4e92c (diff) |
o3tl::string_view -> std::string_view (in tools)
Change-Id: Ic3952cf0f05752813f60199b7b2c8c8e8dc27427
Reviewed-on: https://gerrit.libreoffice.org/66118
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/urlobj.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx index 84556aa4a609..391a629c5598 100644 --- a/include/tools/urlobj.hxx +++ b/include/tools/urlobj.hxx @@ -23,10 +23,10 @@ #include <rtl/ustrbuf.hxx> #include <rtl/textenc.h> #include <sal/types.h> -#include <o3tl/string_view.hxx> #include <o3tl/typed_flags_set.hxx> #include <memory> +#include <string_view> class SvMemoryStream; @@ -381,7 +381,7 @@ public: bool isSchemeEqualTo(INetProtocol scheme) const { return scheme == m_eScheme; } - bool isSchemeEqualTo(o3tl::u16string_view scheme) const; + bool isSchemeEqualTo(std::u16string_view scheme) const; /** Check if the scheme is one of the WebDAV scheme * we know about. |