Consider the case where there is not any layout name.
[lyx.git] / src / tex2lyx / boost.C
blobf923302c370c18c30be44a20dcccb3fb14a27cd3
1 /**
2  * \file boost.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
11 #include <config.h>
13 #include "debug.h"
15 #include <boost/assert.hpp>
17 #include <cstdlib>
18 #include <exception>
20 using std::endl;
22 namespace boost {
24 void throw_exception(std::exception const & e)
26         lyxerr << "Exception caught:\n"
27                << e.what() << endl;
28         BOOST_ASSERT(false);
32 void assertion_failed(char const * expr, char const * function,
33                       char const * file, long line)
35         lyxerr << "Assertion triggered in " << function
36                << " by failing check \"" << expr << "\""
37                << " in file " << file << ":" << line << endl;
38         ::abort();
41 } // namespace boost