preprocessor: opening file in binary mode solves mysterious bug with CR LF terminated lines under Cygwin

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1700 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
michel 2008-02-08 17:42:09 +00:00
parent 0eca1351d9
commit c30f1ab5bc
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ MacroDriver::parse(const string &f, ostream &out)
{
file = f;
ifstream in(f.c_str());
ifstream in(f.c_str(),ifstream::binary);
lexer = new MacroFlex(&in, &out);
lexer->set_debug(trace_scanning);