Kaydet (Commit) d7777467 authored tarafından Michael Stahl's avatar Michael Stahl

bridges: -Werror,-Wimplicit-fallthrough

Change-Id: I1ad51d4dc7e6bddfc5fa8d6252a7d6349bd5dfb7
üst 633e6cf9
......@@ -107,6 +107,7 @@ void CPPU_CURRENT_NAMESPACE::callVirtualMethod(
case typelib_TypeClass_HYPER:
case typelib_TypeClass_UNSIGNED_HYPER:
static_cast<long*>(pRegisterReturn)[1] = edx;
SAL_FALLTHROUGH;
case typelib_TypeClass_LONG:
case typelib_TypeClass_UNSIGNED_LONG:
case typelib_TypeClass_CHAR:
......
......@@ -323,7 +323,8 @@ extern "C" void cpp_vtable_call(
}
TYPELIB_DANGER_RELEASE( pTD );
}
} // else perform queryInterface()
SAL_FALLTHROUGH; // else perform queryInterface()
}
default:
cpp2uno_call(
pCppI, aMemberDescr.get(),
......
......@@ -348,7 +348,8 @@ void unoInterfaceProxyDispatch(
}
TYPELIB_DANGER_RELEASE( pTD );
}
} // else perform queryInterface()
SAL_FALLTHROUGH; // else perform queryInterface()
}
default:
// dependent dispatch
cpp_call(
......
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