]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/tests/boost.cpp
Honor pending spaces in InsetMathChar::write
[lyx.git] / src / frontends / tests / boost.cpp
index da848fa8b4ff732bebdb68ef8a0b188dbf6bb619..7230f5b003905a8368aa7fd5e4e78616bf598b61 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
 #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*/,
@@ -30,4 +33,11 @@ void assertion_failed(char const * /*expr*/, char const * /*function*/,
        ::abort();
 }
 
+
+void assertion_failed_msg(char const * /*expr*/, char const * /*msg*/,
+                                                 char const * /*function*/, char const * /*file*/, long /*line*/)
+{
+       ::abort();
 }
+
+} // namespace boost