]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/boost.cpp
tex2lyx: support tipa \t*{} macro.
[lyx.git] / src / tex2lyx / boost.cpp
index 7efe686a4925492547f61f4d50a0c5cf74874ce3..0e0a65dc9b9b3ce992ab02737c8d695ae317feb8 100644 (file)
@@ -3,28 +3,26 @@
  * 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 "support/debug.h"
-
 #include <boost/assert.hpp>
 
 #include <cstdlib>
 #include <exception>
-#include <ostream>
+#include <iostream>
 
 using namespace std;
 
 namespace boost {
 
-void throw_exception(exception const & e)
+void throw_exception(std::exception const & e)
 {
-       lyx::lyxerr << "Exception caught:\n"
+       cerr << "Exception caught:\n"
               << e.what() << endl;
        BOOST_ASSERT(false);
 }
@@ -33,9 +31,9 @@ void throw_exception(exception const & e)
 void assertion_failed(char const * expr, char const * function,
                      char const * file, long line)
 {
-       lyx::lyxerr << "Assertion triggered in " << function
-              << " by failing check \"" << expr << "\""
-              << " in file " << file << ":" << line << endl;
+       cerr << "Assertion triggered in " << function
+           << " by failing check \"" << expr << "\""
+           << " in file " << file << ":" << line << endl;
        ::abort();
 }