commit 985854be35bd787ff3790827d3fc3171a191362f
parent 026a8c4bb15175a265929e26170844cbd08c1baf
Author: Alexey Yerin <yyp@disroot.org>
Date: Fri, 15 Oct 2021 15:01:01 +0300
hare::types: add NONE=0 to func_flags to match hare::ast
Signed-off-by: Alexey Yerin <yyp@disroot.org>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/hare/types/types.ha b/hare/types/types.ha
@@ -36,6 +36,7 @@ export type variadism = enum {
// Indicats if a [[func]] has the @noreturn attribute
export type func_flags = enum uint {
+ NONE = 0,
NORETURN = 1 << 0,
};