]> git.lyx.org Git - lyx.git/blobdiff - src/support/tests/boost.cpp
Remove non-copyable idioms
[lyx.git] / src / support / tests / boost.cpp
index ba895204bc4c7ba892fc5f1a693ba75b613163bb..426263b19d007430e4e97022a9bf39572ca9ac0d 100644 (file)
@@ -3,14 +3,14 @@
  * 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 <config.h>
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
 #include <cstdlib>
 #include <exception>
@@ -22,7 +22,7 @@ namespace boost {
 #ifndef BOOST_NO_EXCEPTIONS
 void throw_exception(exception const & /*e*/)
 {
-       BOOST_ASSERT(false);
+       LASSERT(false, /**/);
 }
 #endif