From 67d8c245daf7c6ee33e908255f2bbd0ea8d08206 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 25 Apr 2022 17:01:04 +0200 Subject: [PATCH] loplugin:stringview Change-Id: I4bd3efe67217a4c4418cf308cc8e7a55cf4a604a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133390 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx b/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx index 8db8c37140e5..ff50e62dd026 100644 --- a/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx @@ -29,6 +29,7 @@ #include #include +#include #include #include #include @@ -99,7 +100,7 @@ std::type_info * Rtti::getRtti(typelib_TypeDescription const & type) { for (sal_Int32 j = 0; j != -1;) { OString t( OUStringToOString( - unoName.getToken(0, '.', j), RTL_TEXTENCODING_ASCII_US)); + o3tl::getToken(unoName, 0, '.', j), RTL_TEXTENCODING_ASCII_US)); b.append(t.getLength()); b.append(t); }