fixes from Angus

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2531 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-08-17 11:08:55 +00:00
parent 8ccadb0c78
commit 60e132e76e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
@ -7,6 +9,7 @@
#include "mathed/support.h"
#include "support/LOstream.h"
using std::max;
MathDelimInset::MathDelimInset(latexkeys const * l, latexkeys const * r)
: MathNestInset(1), left_(l), right_(r)

View File

@ -46,6 +46,8 @@
#include "support/lstrings.h"
using std::istream;
using std::ostream;
using std::ios;
using std::endl;
@ -128,7 +130,7 @@ enum {
FLAG_NEWLINE = 1 << 6, // next \\\\ ends the parsing process
FLAG_ITEM = 1 << 7, // read a (possibly braced token)
FLAG_BLOCK = 1 << 8, // next block ends the parsing process
FLAG_LEAVE = 1 << 9, // leave the loop at the end
FLAG_LEAVE = 1 << 9 // leave the loop at the end
};