diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-09-22 12:37:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 12:37:54 -0700 |
commit | b867a54c92e36b5a53bb1c2d97c043bb6173a3af (patch) | |
tree | e2f4e21a1d223963538c4aaf930775bc9e7c351f /src/wasm-builder.h | |
parent | e5bf7680a0616f994a9c5c266df9ba76f21e93e9 (diff) | |
download | binaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.tar.gz binaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.tar.bz2 binaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.zip |
Fix build after semantic merge conflict (#3160)
Removes even more uses of allocators.
Diffstat (limited to 'src/wasm-builder.h')
-rw-r--r-- | src/wasm-builder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-builder.h b/src/wasm-builder.h index f0d7feae3..e0c00428f 100644 --- a/src/wasm-builder.h +++ b/src/wasm-builder.h @@ -556,7 +556,7 @@ public: return ret; } RefEq* makeRefEq(Expression* left, Expression* right) { - auto* ret = allocator.alloc<RefEq>(); + auto* ret = wasm.allocator.alloc<RefEq>(); ret->left = left; ret->right = right; ret->finalize(); |