* evtgbaparse/evtgbaparse.yy, ltlparse/ltlparse.yy,

tgbaparse/tgbaparse.yy: Fix Bison warnings about unset $$.
This commit is contained in:
Alexandre Duret-Lutz 2006-08-30 12:11:28 +00:00
parent 94bf01a53c
commit ac94af5791
4 changed files with 15 additions and 9 deletions

View file

@ -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));