Kaydet (Commit) 1f99f4a9 authored tarafından Heiher's avatar Heiher Kaydeden (comit) Caolán McNamara

bridges: mips64: Fix build failure in new codes.

Change-Id: I17fe0fb0ce9341a638b2687e7690777a8de7fa01
Reviewed-on: https://gerrit.libreoffice.org/16980Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 755b9320
...@@ -544,7 +544,7 @@ namespace ...@@ -544,7 +544,7 @@ namespace
unsigned char * codeSnippet( unsigned char * code, unsigned char * codeSnippet( unsigned char * code,
sal_Int32 functionIndex, sal_Int32 vtableOffset, sal_Int32 functionIndex, sal_Int32 vtableOffset,
bool bHasHiddenParam) SAL_THROW(()) bool bHasHiddenParam )
{ {
#ifdef BRDEBUG #ifdef BRDEBUG
fprintf(stderr,"in codeSnippet functionIndex is %d\n", functionIndex); fprintf(stderr,"in codeSnippet functionIndex is %d\n", functionIndex);
......
...@@ -141,7 +141,7 @@ namespace ...@@ -141,7 +141,7 @@ namespace
sal_uInt32 nREG) sal_uInt32 nREG)
{ {
// Should not happen, but... // Should not happen, but...
static_assert( MAX_GP_REGS == MAX_FP_REGS ); static_assert(MAX_GP_REGS == MAX_FP_REGS, "must be the same size");
if ( nREG > MAX_GP_REGS ) if ( nREG > MAX_GP_REGS )
nREG = MAX_GP_REGS; nREG = MAX_GP_REGS;
...@@ -266,7 +266,7 @@ namespace ...@@ -266,7 +266,7 @@ namespace
// return // return
typelib_TypeDescription * pReturnTypeDescr = 0; typelib_TypeDescription * pReturnTypeDescr = 0;
TYPELIB_DANGER_GET( &pReturnTypeDescr, pReturnTypeRef ); TYPELIB_DANGER_GET( &pReturnTypeDescr, pReturnTypeRef );
assert( pReturnTypeDescr, "### expected return type description!" ); assert(pReturnTypeDescr);
void * pCppReturn = 0; // if != 0 && != pUnoReturn, needs reconversion void * pCppReturn = 0; // if != 0 && != pUnoReturn, needs reconversion
......
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