git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2541 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-08-17 17:41:38 +00:00
parent 4d752d6778
commit 07a0f43eee
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-17 Lars Gullik Bjønnes <larsbj@birdstep.com>
* math_parser.C (tokenize): fix typo
2001-08-17 André Pönitz <poenitz@gmx.net>
* math_parser.C: new "lexxer"

View File

@ -392,7 +392,7 @@ void Parser::tokenize(string const & buffer)
init_done = true;
}
istringstream is(buffer, ios::in || ios::binary);
istringstream is(buffer, ios::in | ios::binary);
char c;
while (is.get(c)) {