X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2Fboost.cpp;h=0e0a65dc9b9b3ce992ab02737c8d695ae317feb8;hb=7e69ac220dd958b57ec40f198355c7e0ba8d720e;hp=49db80c9d948a15dd377489c15869b92be92caf0;hpb=9383f4c3c6f9cfab2d658701ba66e2b54cd68bea;p=lyx.git diff --git a/src/tex2lyx/boost.cpp b/src/tex2lyx/boost.cpp index 49db80c9d9..0e0a65dc9b 100644 --- a/src/tex2lyx/boost.cpp +++ b/src/tex2lyx/boost.cpp @@ -3,20 +3,18 @@ * 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 -#include "support/debug.h" - #include #include #include -#include +#include using namespace std; @@ -24,7 +22,7 @@ namespace boost { 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(std::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(); }