diff options
author | Max Graey <maxgraey@gmail.com> | 2021-10-14 02:06:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 16:06:36 -0700 |
commit | c1031ad28382adc240d2d9198e3a2e3ccaccbb3a (patch) | |
tree | b4fdcc770b29c57ba7919b03d6440b792217ddf0 | |
parent | 7126a43e9e1cea50d3534b50d4554f4a18cd6e14 (diff) | |
download | binaryen-c1031ad28382adc240d2d9198e3a2e3ccaccbb3a.tar.gz binaryen-c1031ad28382adc240d2d9198e3a2e3ccaccbb3a.tar.bz2 binaryen-c1031ad28382adc240d2d9198e3a2e3ccaccbb3a.zip |
Fix table.size typo in declarations (#4242)
-rw-r--r-- | src/wasm-delegations-fields.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-delegations-fields.def b/src/wasm-delegations-fields.def index 90ab03f49..dfb8aab4b 100644 --- a/src/wasm-delegations-fields.def +++ b/src/wasm-delegations-fields.def @@ -518,7 +518,7 @@ switch (DELEGATE_ID) { } case Expression::Id::TableSizeId: { DELEGATE_START(TableSize); - DELEGATE_FIELD_NAME(TableSet, table); + DELEGATE_FIELD_NAME(TableSize, table); DELEGATE_END(TableSize); break; } |