]> git.lyx.org Git - lyx.git/blobdiff - src/boost.cpp
* GuiView.cpp:
[lyx.git] / src / boost.cpp
index b255e608850bc0d8ae7f7f171a0c65a5db10293e..f195cdf4e9903097415cf300343c39a50a59be99 100644 (file)
 
 #include "support/debug.h"
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
 #include <exception>
 #include <iomanip>
+#include <iostream>
 
 using namespace std;
 using lyx::lyxerr;
-using lyx::LyX;
 
 namespace boost {
 
@@ -29,7 +29,7 @@ namespace boost {
 void throw_exception(exception const & e)
 {
        lyxerr << "Exception caught:\n" << e.what() << endl;
-       BOOST_ASSERT(false);
+       LASSERT(false, /**/);
 }
 #endif
 
@@ -44,7 +44,7 @@ void assertion_failed(char const * expr, char const * function,
        // FIXME: by default we exit here but we could also inform the user
        // about the assertion and do the emergency cleanup without exiting.
        // FIXME: do we have a list of exit codes defined somewhere?
-       LyX::cref().exit(1);
+       lyx::lyx_exit(1);
 }
 
 } // namespace boost