mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
Compile fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22108 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
717105bfe7
commit
832d474dab
@ -78,7 +78,7 @@ int TexStreamBuffer::sync()
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
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))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <exception>
|
||||
#include <ostream>
|
||||
|
||||
using endl;
|
||||
using namespace std;
|
||||
|
||||
namespace boost {
|
||||
|
||||
|
@ -122,7 +122,7 @@ bool LyXErr::debugging(Debug::Type t) const
|
||||
|
||||
void LyXErr::endl()
|
||||
{
|
||||
stream() << endl;
|
||||
stream() << std::endl;
|
||||
}
|
||||
|
||||
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include "Messages.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace lyx::support;
|
||||
|
||||
namespace lyx {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user