diff options
author | Ben Smith <binjimin@gmail.com> | 2017-02-24 16:49:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 16:49:49 -0800 |
commit | 4e7541cb2d067eeebce5f13f85c0d4f67a685299 (patch) | |
tree | 95d4e943fb8a29ac8d704c1ee108d5c32b3258b5 /src/prebuilt/ast-parser-gen.cc | |
parent | 529015dc83b426659047689922eee7f9a34f9f15 (diff) | |
download | wabt-4e7541cb2d067eeebce5f13f85c0d4f67a685299.tar.gz wabt-4e7541cb2d067eeebce5f13f85c0d4f67a685299.tar.bz2 wabt-4e7541cb2d067eeebce5f13f85c0d4f67a685299.zip |
Remove struct and enum typedefs (#317)
Diffstat (limited to 'src/prebuilt/ast-parser-gen.cc')
-rw-r--r-- | src/prebuilt/ast-parser-gen.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prebuilt/ast-parser-gen.cc b/src/prebuilt/ast-parser-gen.cc index 9843231c..c99211b3 100644 --- a/src/prebuilt/ast-parser-gen.cc +++ b/src/prebuilt/ast-parser-gen.cc @@ -236,11 +236,11 @@ static bool is_empty_signature(WabtFuncSignature* sig); static void append_implicit_func_declaration(WabtLocation*, WabtModule*, WabtFuncDeclaration*); -typedef struct BinaryErrorCallbackData { +struct BinaryErrorCallbackData { WabtLocation* loc; WabtAstLexer* lexer; WabtAstParser* parser; -} BinaryErrorCallbackData; +}; static void on_read_binary_error(uint32_t offset, const char* error, void* user_data); |