mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 20:45:47 +00:00
09130d7a62
This requires to add a assertion_failed_msg handler. Take this occasion to cleanup and uniformize the various boost.cpp files that we have. This adds 50k line of whatever to the source code.
44 lines
793 B
C++
44 lines
793 B
C++
/**
|
|
* \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>
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
#include <cstdlib>
|
|
#include <exception>
|
|
|
|
using namespace std;
|
|
|
|
namespace boost {
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
void throw_exception(exception const & /*e*/)
|
|
{
|
|
BOOST_ASSERT(false);
|
|
}
|
|
#endif
|
|
|
|
|
|
void assertion_failed(char const * /*expr*/, char const * /*function*/,
|
|
char const * /*file*/, long /*line*/)
|
|
{
|
|
::abort();
|
|
}
|
|
|
|
|
|
void assertion_failed_msg(char const * /*expr*/, char const * /*msg*/,
|
|
char const * /*function*/, char const * /*file*/, long /*line*/)
|
|
{
|
|
::abort();
|
|
}
|
|
|
|
} // namespace boost
|