mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
Add missing initialization (I dont think that was the problem, Angus)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3334 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2f954c26fb
commit
9a7ba0c534
@ -186,12 +186,12 @@ NormalStream & operator<<(NormalStream & ns, char c)
|
||||
|
||||
|
||||
WriteStream::WriteStream(std::ostream & os, bool fragile)
|
||||
: os_(os), fragile_(fragile), line_(0)
|
||||
: os_(os), fragile_(fragile), firstitem_(false), line_(0)
|
||||
{}
|
||||
|
||||
|
||||
WriteStream::WriteStream(std::ostream & os)
|
||||
: os_(os), fragile_(false), line_(0)
|
||||
: os_(os), fragile_(false), firstitem_(false), line_(0)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user