mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
40 lines
605 B
C++
40 lines
605 B
C++
// 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__();
|
|
}
|
|
|
|
|
|
}
|