summaryrefslogtreecommitdiff
path: root/src/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary.h')
-rw-r--r--src/binary.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binary.h b/src/binary.h
index 4dc91de7..04059c54 100644
--- a/src/binary.h
+++ b/src/binary.h
@@ -41,12 +41,12 @@
V(DATA, data, 11)
/* clang-format off */
-typedef enum WabtBinarySection {
+enum WabtBinarySection {
#define V(NAME, name, code) WABT_BINARY_SECTION_##NAME = code,
WABT_FOREACH_BINARY_SECTION(V)
#undef V
WABT_NUM_BINARY_SECTIONS
-} WabtBinarySection;
+};
/* clang-format on */
WABT_EXTERN_C_BEGIN