2014-04-20 18:20:25 +00:00
|
|
|
/**
|
|
|
|
* \file boost.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Lars Gullik Bjønnes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2020-01-07 15:23:03 +00:00
|
|
|
#include <boost/assert.hpp>
|
2014-04-20 18:20:25 +00:00
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <exception>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
void throw_exception(exception const & /*e*/)
|
|
|
|
{
|
2020-01-07 15:23:03 +00:00
|
|
|
BOOST_ASSERT(false);
|
2014-04-20 18:20:25 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void assertion_failed(char const * /*expr*/, char const * /*function*/,
|
|
|
|
char const * /*file*/, long /*line*/)
|
|
|
|
{
|
|
|
|
::abort();
|
|
|
|
}
|
|
|
|
|
2020-01-07 15:23:03 +00:00
|
|
|
|
|
|
|
void assertion_failed_msg(char const * /*expr*/, char const * /*msg*/,
|
|
|
|
char const * /*function*/, char const * /*file*/, long /*line*/)
|
|
|
|
{
|
|
|
|
::abort();
|
|
|
|
}
|
|
|
|
|
2014-04-20 18:20:25 +00:00
|
|
|
} // namespace boost
|