sema_init() now returns void

This commit is contained in:
Lorenzo Torres 2025-12-07 16:51:06 +01:00
parent 849e0b6863
commit f7689a3f54
4 changed files with 6 additions and 7 deletions

2
sema.h
View file

@ -71,6 +71,6 @@ typedef struct {
ast_node *ast;
} sema;
sema *sema_init(parser *p, arena *a);
void sema_init(parser *p, arena *a);
#endif