2008-04-17 21:11:41 +00:00
|
|
|
/**
|
|
|
|
* \file assert.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2008-04-17 21:11:41 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "support/debug.h"
|
|
|
|
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
void doAssert(char const * expr, char const * file, long line)
|
|
|
|
{
|
|
|
|
LYXERR0("ASSERTION " << expr << " VIOLATED IN " << file << ":" << line);
|
|
|
|
// comment this out if not needed
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lyx
|