hare

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

commit 8dfd5bd4457d7251c79135d7051750e8da5a91e4
parent 574b882cc4dbbef0ad0448778a3e3c28eb88595a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue,  4 May 2021 13:45:51 -0400

hare::types: remove unnecessary branch

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mhare/types/store.ha | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/hare/types/store.ha b/hare/types/store.ha @@ -313,6 +313,5 @@ fn type_finish(t: *_type) void = { pointer => void, st: _struct => free(st.fields), tu: tuple => free(tu), - * => abort(), // TODO }; };