cast arg to the right type
According to desc., typelib_TypeDescription can be safely used where typelib_TypeDescriptionReference is expected. Change-Id: Ibc3effd7e2894ba6ff738503e747f5157c146454
This commit is contained in:
@@ -233,7 +233,7 @@ static void callVirtualMethod(void * pThis, sal_uInt32 nVtableIndex,
|
||||
"fmr %0, 1\n\t"
|
||||
: "=f" (dret), "=r" (r3), "=r" (r4) : );
|
||||
|
||||
MapReturn(r3, r4, dret, pReturnTypeDescr, pRegisterReturn);
|
||||
MapReturn(r3, r4, dret, reinterpret_cast<typelib_TypeDescriptionReference *>(pReturnTypeDescr), pRegisterReturn);
|
||||
}
|
||||
|
||||
// Macros for easier insertion of values to registers or stack
|
||||
|
Reference in New Issue
Block a user