From 718784ca20b8cb49aec438daecc846f273971793 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 1 Jan 2025 14:33:48 +0200 Subject: run formatter --- include/fwd/ast.h | 7 ++++--- include/fwd/debug.h | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/fwd/ast.h b/include/fwd/ast.h index 62766fb..bcf4171 100644 --- a/include/fwd/ast.h +++ b/include/fwd/ast.h @@ -31,7 +31,8 @@ struct src_loc { struct ast; enum type_kind { - TYPE_ID = 1, TYPE_CONSTRUCT, TYPE_REF, TYPE_PTR, TYPE_CALLABLE, TYPE_VOID + TYPE_ID = 1, TYPE_CONSTRUCT, TYPE_REF, TYPE_PTR, TYPE_CALLABLE, + TYPE_VOID }; struct type { @@ -117,8 +118,8 @@ enum ast_kind { }; enum ast_flag { - AST_FLAG_ANALYZED = (1 << 0), - AST_FLAG_PREANALYZIS = (1 << 1), + AST_FLAG_ANALYZED = (1 << 0), + AST_FLAG_PREANALYZIS = (1 << 1), }; struct ast { diff --git a/include/fwd/debug.h b/include/fwd/debug.h index cc20c83..0794650 100644 --- a/include/fwd/debug.h +++ b/include/fwd/debug.h @@ -93,7 +93,8 @@ void semantic_warn(struct scope *scope, struct ast *node, const char *fmt, ...); * @param node AST node to print message with. * @param fmt Format string. Follows standard printf() formatting. */ -void semantic_error(struct scope *scope, struct ast *node, const char *fmt, ...); +void semantic_error(struct scope *scope, struct ast *node, const char *fmt, + ...); void loc_error(struct scope *scope, struct src_loc loc, const char *fmt, ...); @@ -135,7 +136,7 @@ struct src_issue { void src_issue(struct src_issue issue, const char *err_msg, ...); void type_mismatch(struct scope *scope, struct ast *node, - struct type *l, struct type *r); + struct type *l, struct type *r); const char *type_str(struct type *t); -- cgit v1.2.3