lex: initialize dumb_mode to false

This commit is contained in:
Matthias Schiffer 2015-04-10 18:26:50 +02:00
parent 8c3dd07dfb
commit 475326bf12

View file

@ -83,7 +83,7 @@ private:
public: 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(); advance();
} }