diff options
Diffstat (limited to 'include/wabt/binary.h')
-rw-r--r-- | include/wabt/binary.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/wabt/binary.h b/include/wabt/binary.h index 485f15cb..ecf11a79 100644 --- a/include/wabt/binary.h +++ b/include/wabt/binary.h @@ -89,12 +89,8 @@ enum class NameSectionSubsection { Global = 7, ElemSegment = 8, DataSegment = 9, - // tag names are yet part of the extended-name-section proposal (because it - // only deals with naming things that are in the spec already). However, we - // include names for Tags in wabt using this enum value on the basis that tags - // can only exist when exceptions are enabled and that engines should ignore - // unknown name types. - Tag = 10, + Field = 10, + Tag = 11, First = Module, Last = Tag, |