summaryrefslogtreecommitdiff
path: root/src/ast-lexer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast-lexer.cc')
-rw-r--r--src/ast-lexer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast-lexer.cc b/src/ast-lexer.cc
index 07fef8ee..3ded34d7 100644
--- a/src/ast-lexer.cc
+++ b/src/ast-lexer.cc
@@ -502,10 +502,10 @@ void wabt_destroy_ast_lexer(WabtAstLexer* lexer) {
wabt_free(lexer);
}
-typedef enum WabtLineOffsetPosition {
+enum WabtLineOffsetPosition {
WABT_LINE_OFFSET_POSITION_START,
WABT_LINE_OFFSET_POSITION_END,
-} WabtLineOffsetPosition;
+};
static WabtResult scan_forward_for_line_offset_in_buffer(
const char* buffer_start,