diff options
author | Ben Smith <binjimin@gmail.com> | 2017-06-30 10:34:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 10:34:22 -0700 |
commit | 193f08d7c0846d0d840973be0ca182c27ac4daa1 (patch) | |
tree | 00d395db6cec5e376e55a99e4b684e4049418e7b /src/expr-visitor.h | |
parent | cd1ae6ae25556cbefbd8e3777e0817b1d1307dd1 (diff) | |
download | wabt-193f08d7c0846d0d840973be0ca182c27ac4daa1.tar.gz wabt-193f08d7c0846d0d840973be0ca182c27ac4daa1.tar.bz2 wabt-193f08d7c0846d0d840973be0ca182c27ac4daa1.zip |
Use intrusive_list for Expr (#544)
Nothing much special here, but it is becoming increasingly annoying that
the parser Token cannot have value types (so everything must be moved
then deleted).
Diffstat (limited to 'src/expr-visitor.h')
-rw-r--r-- | src/expr-visitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr-visitor.h b/src/expr-visitor.h index 3c8b6b5f..249fccc4 100644 --- a/src/expr-visitor.h +++ b/src/expr-visitor.h @@ -30,7 +30,7 @@ class ExprVisitor { explicit ExprVisitor(Delegate* delegate); Result VisitExpr(Expr*); - Result VisitExprList(Expr*); + Result VisitExprList(ExprList&); Result VisitFunc(Func*); private: |