]> git.lyx.org Git - lyx.git/blobdiff - src/boost.cpp
Typo.
[lyx.git] / src / boost.cpp
index 9d2d2b8aa247d4d29753b6c4434f368b6a96b5b8..c988bbaeb3602caf0ab634f7cbb04b042000ac9d 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "support/debug.h"
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
 #include <exception>
 #include <iomanip>
@@ -30,7 +30,7 @@ namespace boost {
 void throw_exception(exception const & e)
 {
        lyxerr << "Exception caught:\n" << e.what() << endl;
-       BOOST_ASSERT(false);
+       LASSERT(false, /**/);
 }
 #endif