lex: initialize dumb_mode to false
This commit is contained in:
parent
8c3dd07dfb
commit
475326bf12
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ private:
|
|||
|
||||
|
||||
public:
|
||||
lex_t(FILE *file0) : file(file0), needspace(false), start(0), end(0), tok_len(0) {
|
||||
lex_t(FILE *file0) : file(file0), needspace(false), dumb_mode(false), start(0), end(0), tok_len(0) {
|
||||
advance();
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue