harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

commit 2eccbc4b959a590dda91143c8487edda841106d9
parent 9aaafb78efda176bf64a18d2c2f1def0e4df3d01
Author: Armin Weigl <tb46305@gmail.com>
Date:   Mon, 20 Jun 2022 07:15:39 +0200

type_enum_value: remove unused struct

Fixes: 5ea0e29 ("implement enum aliases")
Signed-off-by: Armin Weigl <tb46305@gmail.com>

Diffstat:
Minclude/types.h | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/include/types.h b/include/types.h @@ -62,15 +62,6 @@ struct type_array { bool expandable; }; -struct type_enum_value { - char *name; - struct type_enum_value *next; - union { - int64_t ival; - uint64_t uval; - }; -}; - struct type_enum { struct scope *values; };