From fb683a2b1b962da4f00eb86c57b9c75fbcdf9908 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 30 Oct 2024 14:02:34 -0400 Subject: Organize typedef headers so the typedefs come before the namespace members --- compile.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compile.h') diff --git a/compile.h b/compile.h index 2a352f8e..d6c06484 100644 --- a/compile.h +++ b/compile.h @@ -17,7 +17,8 @@ CORD compile(env_t *env, ast_t *ast); void compile_namespace(env_t *env, const char *ns_name, ast_t *block); CORD compile_namespace_header(env_t *env, const char *ns_name, ast_t *block); CORD compile_statement(env_t *env, ast_t *ast); -CORD compile_statement_header(env_t *env, ast_t *ast); +CORD compile_statement_type_header(env_t *env, ast_t *ast); +CORD compile_statement_namespace_header(env_t *env, ast_t *ast); CORD compile_type_info(env_t *env, type_t *t); CORD compile_cli_arg_call(env_t *env, CORD fn_name, type_t *fn_type); -- cgit v1.2.3