mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-07 01:46:27 +00:00
14 lines
201 B
C++
14 lines
201 B
C++
|
// This file is a modeling file for coverity
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
// Tell coverity that this function always exits
|
||
|
void doAssertWithCallstack(bool value)
|
||
|
{
|
||
|
if (!value) {
|
||
|
__coverity_panic__();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|