Kaydet (Commit) bcc719d5 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy

Change-Id: Iaa470f710295e65347c9d12a3bce0d0b68b02417
üst 9c9f0ea2
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "IdentityMapping.hxx" #include "IdentityMapping.hxx"
#include "typelib/typedescription.h"
#include "uno/mapping.h" #include "uno/mapping.h"
#include "uno/environment.hxx" #include "uno/environment.hxx"
...@@ -67,7 +68,7 @@ static void SAL_CALL s_release(uno_Mapping * pMapping) ...@@ -67,7 +68,7 @@ static void SAL_CALL s_release(uno_Mapping * pMapping)
static void SAL_CALL s_mapInterface(uno_Mapping * pMapping, static void SAL_CALL s_mapInterface(uno_Mapping * pMapping,
void ** ppOut, void ** ppOut,
void * pInterface, void * pInterface,
SAL_UNUSED_PARAMETER struct _typelib_InterfaceTypeDescription * /*pInterfaceTypeDescr*/) SAL_UNUSED_PARAMETER typelib_InterfaceTypeDescription * /*pInterfaceTypeDescr*/)
{ {
*ppOut = pInterface; *ppOut = pInterface;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment