hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 62eaaea9e212f077edc212047a3d5743f96dd1d3
parent d1366147e6a15c115e8c654fd1dd354e6fa82b42
Author: Alexey Yerin <yyp@disroot.org>
Date:   Sun, 31 Oct 2021 11:34:06 +0300

rt: drop types::ENUM

This is not used and causes ABI issues.

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mrt/types.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rt/types.ha b/rt/types.ha @@ -29,8 +29,8 @@ type types::array = struct { }; type types::builtin = enum uint { - BOOL, CHAR, ENUM, F32, F64, I16, I32, I64, I8, INT, NULL, RUNE, SIZE, - STR, U16, U32, U64, U8, UINT, UINTPTR, VOID, TYPE, + BOOL, CHAR, F32, F64, I16, I32, I64, I8, INT, NULL, RUNE, SIZE, STR, + U16, U32, U64, U8, UINT, UINTPTR, VOID, TYPE, }; type types::enum_ = struct {