summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/smt/Smt.g4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/smt/Smt.g b/src/parser/smt/Smt.g
index 083bdf3b5..932d9be78 100644
--- a/src/parser/smt/Smt.g
+++ b/src/parser/smt/Smt.g
@@ -193,8 +193,8 @@ benchAttribute returns [CVC4::Command* smt_command = NULL]
| STATUS_TOK status[b_status]
{ smt_command = new SetBenchmarkStatusCommand(b_status); }
| EXTRAFUNS_TOK LPAREN_TOK
- ( { smt_command = new CommandSequence(); }
- functionDeclaration[c]
+ { smt_command = new CommandSequence(); }
+ ( functionDeclaration[c]
{ ((CommandSequence*) smt_command)->addCommand(c); }
)+ RPAREN_TOK
| EXTRAPREDS_TOK LPAREN_TOK
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback