diff options
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 |