Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/FlexLexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ class yyFlexLexer : public FlexLexer {
void yy_switch_to_buffer( yy_buffer_state* new_buffer );
yy_buffer_state* yy_create_buffer( std::istream* s, int size );
yy_buffer_state* yy_create_buffer( std::istream& s, int size );
yy_buffer_state* yy_append_bytes( const char * yybytes, int _yybytes_len );
void yy_delete_buffer( yy_buffer_state* b );
void yyrestart( std::istream* s );
void yyrestart( std::istream& s );
Expand Down Expand Up @@ -213,6 +214,8 @@ class yyFlexLexer : public FlexLexer {
int yy_more_len;
int yy_more_offset;
int yy_prev_more_offset;

int yy_resume; // whether we should resume scanning after a stall
};

}
Expand Down
Loading