* evtgbaparse/evtgbaparse.yy, ltlparse/ltlparse.yy,
tgbaparse/tgbaparse.yy: Fix Bison warnings about unset $$.
This commit is contained in:
parent
94bf01a53c
commit
ac94af5791
4 changed files with 15 additions and 9 deletions
|
|
@ -152,6 +152,7 @@ line: strident ',' strident ',' condition ',' acc_list ';'
|
|||
string: STRING
|
||||
| UNTERMINATED_STRING
|
||||
{
|
||||
$$ = $1;
|
||||
error_list.push_back(spot::tgba_parse_error(@1,
|
||||
"unterminated string"));
|
||||
}
|
||||
|
|
@ -219,7 +220,7 @@ acc_decl:
|
|||
%%
|
||||
|
||||
void
|
||||
tgbayy::parser::error(const location_type& location,
|
||||
tgbayy::parser::error(const location_type& location,
|
||||
const std::string& message)
|
||||
{
|
||||
error_list.push_back(spot::tgba_parse_error(location, message));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue