From aaf44ae6f0e50838a7e6674eada4eedfce91590c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 13 Oct 2020 17:12:26 +0200 Subject: loplugin:stringconstant (clang-cl) Change-Id: I407b5e80a331950790f549ac8a50e8d7e49ee6d8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104245 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- bridges/source/cpp_uno/msvc_shared/except.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridges') diff --git a/bridges/source/cpp_uno/msvc_shared/except.cxx b/bridges/source/cpp_uno/msvc_shared/except.cxx index 5bce2b04bc47..c9432af4e67b 100644 --- a/bridges/source/cpp_uno/msvc_shared/except.cxx +++ b/bridges/source/cpp_uno/msvc_shared/except.cxx @@ -70,7 +70,7 @@ static OUString toUNOname(OUString const& rRTTIname) throw() static OUString toRTTIname(OUString const& rUNOname) throw() { OUStringBuffer aRet(64); - aRet.appendAscii(".?AV"); // class ".?AV"; struct ".?AU" + aRet.append(".?AV"); // class ".?AV"; struct ".?AU" sal_Int32 nPos = rUNOname.getLength(); while (nPos > 0) { -- cgit