summaryrefslogtreecommitdiff
path: root/src/wast-parser-lexer-shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wast-parser-lexer-shared.h')
-rw-r--r--src/wast-parser-lexer-shared.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/wast-parser-lexer-shared.h b/src/wast-parser-lexer-shared.h
index 56367ab7..fa36bd4d 100644
--- a/src/wast-parser-lexer-shared.h
+++ b/src/wast-parser-lexer-shared.h
@@ -32,12 +32,6 @@
namespace wabt {
-struct ExprList {
- Expr* first;
- Expr* last;
- size_t size;
-};
-
struct TextListNode {
StringSlice text;
struct TextListNode* next;
@@ -77,7 +71,7 @@ union Token {
Exception* exception;
Export* export_;
Expr* expr;
- ExprList expr_list;
+ ExprList* expr_list;
Func* func;
FuncSignature* func_sig;
FuncType* func_type;