X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fboost.cpp;h=646d4e4dfb3960c48e6ad6bf1be816fbba611a2d;hb=89d9334e03c311a4a7585f40ad81880304d174d4;hp=f195cdf4e9903097415cf300343c39a50a59be99;hpb=af9752a0a63dca7fadecc48575faa922cdd9bd5d;p=lyx.git diff --git a/src/boost.cpp b/src/boost.cpp index f195cdf4e9..646d4e4dfb 100644 --- a/src/boost.cpp +++ b/src/boost.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -18,7 +18,7 @@ #include #include -#include +#include using namespace std; using lyx::lyxerr; @@ -35,7 +35,7 @@ void throw_exception(exception const & e) void assertion_failed(char const * expr, char const * function, - char const * file, long line) + char const * file, long line) { lyxerr << "Assertion triggered in " << function << " by failing check \"" << expr << "\"" @@ -47,4 +47,18 @@ void assertion_failed(char const * expr, char const * function, lyx::lyx_exit(1); } +void assertion_failed_msg(char const * expr, char const * msg, + char const * function, char const * file, long line) +{ + lyxerr << "Assertion triggered in " << function + << " by failing check \"" << expr << "\"" + << " with message \"" << msg << "\"" + << " in file " << file << ":" << line << endl; + + // FIXME: by default we exit here but we could also inform the user + // about the assertion and do the emergency cleanup without exiting. + // FIXME: do we have a list of exit codes defined somewhere? + lyx::lyx_exit(1); +} + } // namespace boost