1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
// This file is a modeling file for coverity
namespace lyx {
// Tell coverity that this function exits when value is false
void doAssertWithCallstack(bool value)
{
if (!value) {
__coverity_panic__();
}
}
void doAssertStatic(char const * expr, char const * file, long line)
{
__coverity_panic__();
}
// Tell coverity that this function always exits
void doAppErr(char const * expr, char const * file, long line)
{
__coverity_panic__();
}
void lyx_exit(int exit_code)
{
__coverity_panic__();
}
void lyxbreaker(void const * data, const char * hint, int size)
{
__coverity_panic__();
}
}
|