lyx_mirror/development/coverity_modeling.cpp
2017-03-31 11:31:44 +02:00

20 lines
354 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__();
}
}
// Tell coverity that this function always exits
void doAppErr(char const * expr, char const * file, long line)
{
__coverity_panic__();
}
}