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/literal.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/literal.h')
-rw-r--r-- | src/literal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/literal.h b/src/literal.h index 9c8ccf8a..5f237c0c 100644 --- a/src/literal.h +++ b/src/literal.h @@ -28,10 +28,10 @@ * result, the only validation that is done is for overflow, not for otherwise * bogus input. */ -typedef enum WabtParseIntType { +enum WabtParseIntType { WABT_PARSE_UNSIGNED_ONLY = 0, WABT_PARSE_SIGNED_AND_UNSIGNED = 1, -} WabtParseIntType; +}; /* Size of char buffer required to hold hex representation of a float/double */ #define WABT_MAX_FLOAT_HEX 20 |