lyx_mirror/src/frontends/tests/boost.cpp
Jean-Marc Lasgouttes 09130d7a62 Update to boost 1.72
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.
2020-01-07 16:27:23 +01:00

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