]> git.lyx.org Git - features.git/commitdiff
Squash some warnings.
authorRichard Heck <rgheck@comcast.net>
Thu, 18 Nov 2010 22:01:54 +0000 (22:01 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 18 Nov 2010 22:01:54 +0000 (22:01 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36386 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/MathStream.cpp

index c74123c448ae72ba31ae1aedb2fa06a235011bf9..f4ff9349b059543097e47a2bfbf6294d3183d0c8 100644 (file)
@@ -125,7 +125,7 @@ WriteStream::WriteStream(odocstream & os, bool fragile, bool latex, OutputType o
                        Encoding const * encoding)
        : os_(os), fragile_(fragile), firstitem_(false), latex_(latex),
          output_(output), pendingspace_(false), pendingbrace_(false),
-         canbreakline_(true), textmode_(false), locked_(0), ascii_(0),
+         textmode_(false), locked_(0), ascii_(0), canbreakline_(true),
          line_(0), encoding_(encoding)
 {}
 
@@ -133,7 +133,7 @@ WriteStream::WriteStream(odocstream & os, bool fragile, bool latex, OutputType o
 WriteStream::WriteStream(odocstream & os)
        : os_(os), fragile_(false), firstitem_(false), latex_(false),
          output_(wsDefault), pendingspace_(false), pendingbrace_(false),
-         canbreakline_(true), textmode_(false), locked_(0), ascii_(0),
+         textmode_(false), locked_(0), ascii_(0), canbreakline_(true),
          line_(0), encoding_(0)
 {}