]> git.lyx.org Git - lyx.git/blobdiff - src/boost.C
Point fix, earlier forgotten
[lyx.git] / src / boost.C
index ef997c801c836d25164aa05902e2bc79ae83df0d..f16fcfe92f46e4afab46d71ef5ba3b061285b601 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file boost.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "debug.h"
@@ -5,6 +15,8 @@
 
 #include <exception>
 
+using namespace lyx::support;
+
 using std::endl;
 
 namespace boost {
@@ -13,7 +25,7 @@ void throw_exception(std::exception const & e)
 {
        lyxerr << "Exception caught:\n"
            << e.what() << endl;
-       lyx::Assert(false);
+       Assert(false);
 }