summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-05-15 08:24:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-05-15 09:44:03 +0200
commit8e8c4da18858bdc446f6a471858e2e77588d1e53 (patch)
treeca005bdfa0ddd296963327efd5451bc7e2a2348d /bridges
parent8713c1ffd852817404447a507a21fc4a613914d9 (diff)
loplugin:stringconcat, loplugin:sallogareas (clang-cl)
("bridges.win64" isn't more useful than plain "bridges" here, as each platform uses only one bridges/source/cpp_uno/ sub-dir, anyway) Change-Id: Ic8c2af892cdfad98e10d43532b3bf3c892555446 Reviewed-on: https://gerrit.libreoffice.org/54351 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
index aa1020244d0b..216f261d6d55 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
@@ -240,11 +240,11 @@ extern "C" typelib_TypeClass cpp_vtable_call(
typelib_InterfaceTypeDescription * pTD = pCppI->getTypeDescr();
- SAL_INFO( "bridges.win64", "cpp_vtable_call: pCallStack=[" <<
- std::hex << pStack[0] << "," << pStack[1] << "," << pStack[2] << ",...]" <<
- ", pThis=" << pThis << ", pCppI=" << pCppI <<
+ SAL_INFO( "bridges", "cpp_vtable_call: pCallStack=[" <<
+ std::hex << pStack[0] << "," << pStack[1] << "," << pStack[2] << ",...], pThis=" <<
+ pThis << ", pCppI=" << pCppI <<
std::dec << ", nFunctionIndex=" << nFunctionIndex << ", nVtableOffset=" << nVtableOffset );
- SAL_INFO( "bridges.win64", "name=" << OUString::unacquired(&pTD->aBase.pTypeName) );
+ SAL_INFO( "bridges", "name=" << OUString::unacquired(&pTD->aBase.pTypeName) );
if ( nFunctionIndex >= pTD->nMapFunctionIndexToMemberIndex )
{
@@ -266,7 +266,7 @@ extern "C" typelib_TypeClass cpp_vtable_call(
TypeDescription aMemberDescr( pTD->ppAllMembers[nMemberPos] );
- SAL_INFO( "bridges.win64", "Calling " << OUString::unacquired(&aMemberDescr.get()->pTypeName) );
+ SAL_INFO( "bridges", "Calling " << OUString::unacquired(&aMemberDescr.get()->pTypeName) );
typelib_TypeClass eRet;
switch ( aMemberDescr.get()->eTypeClass )