diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-10-13 17:12:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-10-14 08:34:02 +0200 |
commit | aaf44ae6f0e50838a7e6674eada4eedfce91590c (patch) | |
tree | dfadf8b299da44062dd9722a1a277bba2a2e74a4 /bridges | |
parent | 06ac088aeec09f7f90d3ccbffc2f5eed04b82151 (diff) |
loplugin:stringconstant (clang-cl)
Change-Id: I407b5e80a331950790f549ac8a50e8d7e49ee6d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104245
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/msvc_shared/except.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |