aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-12 00:41:49 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-12 00:41:49 -0500
commit2c5401aaf731bba58d0db419594068ac24eda143 (patch)
treea5eccd94ad7bd0b1a48f7005fe50356d0f261f6f /types.h
parent0f1913353408f46494741b05737d88156b81b7c4 (diff)
Deprecate Char type
Diffstat (limited to 'types.h')
-rw-r--r--types.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/types.h b/types.h
index 001167ab..b744d6b2 100644
--- a/types.h
+++ b/types.h
@@ -35,7 +35,6 @@ struct type_s {
VoidType,
MemoryType,
BoolType,
- CharType,
IntType,
NumType,
ArrayType,
@@ -51,7 +50,7 @@ struct type_s {
union {
struct {
- } UnknownType, AbortType, VoidType, MemoryType, BoolType, CharType;
+ } UnknownType, AbortType, VoidType, MemoryType, BoolType;
struct {
int64_t bits;
} IntType;