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/binary-writer.h | |
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/binary-writer.h')
-rw-r--r-- | src/binary-writer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binary-writer.h b/src/binary-writer.h index a5f3b94c..f34bb5c6 100644 --- a/src/binary-writer.h +++ b/src/binary-writer.h @@ -28,12 +28,12 @@ struct WabtStream; #define WABT_WRITE_BINARY_OPTIONS_DEFAULT \ { nullptr, true, false, false } -typedef struct WabtWriteBinaryOptions { +struct WabtWriteBinaryOptions { struct WabtStream* log_stream; bool canonicalize_lebs; bool relocatable; bool write_debug_names; -} WabtWriteBinaryOptions; +}; WABT_EXTERN_C_BEGIN WabtResult wabt_write_binary_module(struct WabtWriter*, |