* src/ltlparse/ltlscan.ll (to_parse_size): Declare as size_t to
remove a warning with newer versions of Flex.
This commit is contained in:
parent
a92327d30b
commit
f1838ab8ef
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2003-05-15 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||
|
||||
* src/ltlparse/ltlscan.ll (to_parse_size): Declare as size_t to
|
||||
remove a warning with newer versions of Flex.
|
||||
|
||||
* src/ltlparse/ltlparse.yy (error_list, parse_environment, result):
|
||||
CVS Bison now supports %parse-param for the C++ skeleton; pass these
|
||||
variables as arguments to the Parser::Parser constructor instead of
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
yylloc->columns (yyleng);
|
||||
|
||||
static const char *to_parse = 0;
|
||||
static int to_parse_size = 0;
|
||||
static size_t to_parse_size = 0;
|
||||
|
||||
void
|
||||
flex_set_buffer(const char *buf)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue