summaryrefslogtreecommitdiff
path: root/src/wasm-s-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r--src/wasm-s-parser.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h
index 4f0bd199b..5440faecc 100644
--- a/src/wasm-s-parser.h
+++ b/src/wasm-s-parser.h
@@ -111,14 +111,13 @@ public:
//
class SExpressionParser {
- char *beginning;
char* input;
MixedArena allocator;
public:
// Assumes control of and modifies the input.
- SExpressionParser(char* input) : beginning(input), input(input) {
+ SExpressionParser(char* input) : input(input) {
root = nullptr;
while (!root) { // keep parsing until we pass an initial comment
root = parseInnerList();