diff options
author | Michael Williamson <mike@zwobble.org> | 2023-11-27 17:56:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 09:56:49 -0800 |
commit | bf44aa4777add07462df6fe7a02eac8754b40a82 (patch) | |
tree | dd55b879ceffade8230012fc8ecaca78f604976f /src/binary.cc | |
parent | c2ce34ef5a2bd0466bbc1d489193d98401bea0bf (diff) | |
download | wabt-bf44aa4777add07462df6fe7a02eac8754b40a82.tar.gz wabt-bf44aa4777add07462df6fe7a02eac8754b40a82.tar.bz2 wabt-bf44aa4777add07462df6fe7a02eac8754b40a82.zip |
Update ID for tag name subsection (#2336)
The tag name subsection currently has the speculative ID of 10.
However, the extended-name-section proposal has now been updated to
use an ID of 11 for the tag name section. This updates the
NameSectionSubsection enum accordingly, as well as adding a field
name section with the ID of 10.
Diffstat (limited to 'src/binary.cc')
-rw-r--r-- | src/binary.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/binary.cc b/src/binary.cc index d4938a19..c8b96461 100644 --- a/src/binary.cc +++ b/src/binary.cc @@ -54,6 +54,7 @@ const char* NameSubsectionName[] = { "global", "elemseg", "dataseg", + "field", "tag", }; // clang-format on |