X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2Fboost.cpp;h=0e0a65dc9b9b3ce992ab02737c8d695ae317feb8;hb=b5722962fb0393299e02df0b146522770e98aef6;hp=f1dad3061ba80696e1d2de25f76b3e4d885bfec1;hpb=3a5d681a9b573ffa4a3c84f55ad6e6eabd2ed488;p=lyx.git diff --git a/src/tex2lyx/boost.cpp b/src/tex2lyx/boost.cpp index f1dad3061b..0e0a65dc9b 100644 --- a/src/tex2lyx/boost.cpp +++ b/src/tex2lyx/boost.cpp @@ -10,13 +10,11 @@ #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(); }