Compile fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22108 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-12-12 20:21:09 +00:00
parent 717105bfe7
commit 832d474dab
4 changed files with 3 additions and 4 deletions

View File

@ -78,7 +78,7 @@ int TexStreamBuffer::sync()
//////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////
TexStream::TexStream(TexStreamBase * sbuf, TexRow * texrow) TexStream::TexStream(TexStreamBase * sbuf, TexRow * texrow)
: basic_ostream<char_type>(sbuf_ = new TexStreamBuffer(sbuf, texrow)) : std::basic_ostream<char_type>(sbuf_ = new TexStreamBuffer(sbuf, texrow))
{} {}

View File

@ -19,7 +19,7 @@
#include <exception> #include <exception>
#include <ostream> #include <ostream>
using endl; using namespace std;
namespace boost { namespace boost {

View File

@ -122,7 +122,7 @@ bool LyXErr::debugging(Debug::Type t) const
void LyXErr::endl() void LyXErr::endl()
{ {
stream() << endl; stream() << std::endl;
} }

View File

@ -15,7 +15,6 @@
#include "Messages.h" #include "Messages.h"
using namespace std; using namespace std;
using namespace lyx::support;
namespace lyx { namespace lyx {