fix(frontends/lean/parse_table): missing condition

This commit is contained in:
Leonardo de Moura 2015-08-16 15:35:05 -07:00
parent eb8f586dba
commit ffde40a500

View file

@ -182,6 +182,7 @@ bool action::is_equal(action const & a) const {
case action_kind::Exprs: case action_kind::Exprs:
return return
rbp() == a.rbp() && rbp() == a.rbp() &&
get_sep() == a.get_sep() &&
get_rec() == a.get_rec() && get_rec() == a.get_rec() &&
get_initial() == a.get_initial() && get_initial() == a.get_initial() &&
get_terminator() == a.get_terminator() && get_terminator() == a.get_terminator() &&