From 3481042259c1db4d9fb4e50d5e91e8c58e8cdac5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 12 May 2024 15:56:24 -0400 Subject: Simplify interfaces by requiring all functions are pointer methods --- ast.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'ast.h') diff --git a/ast.h b/ast.h index 5c983a17..97bbd886 100644 --- a/ast.h +++ b/ast.h @@ -251,7 +251,6 @@ struct ast_s { } LangDef; struct { const char *name; - type_ast_t *type_parameter; arg_ast_t *fields; ast_t *namespace; } InterfaceDef; @@ -290,6 +289,5 @@ CORD type_ast_to_xml(type_ast_t *ast); int printf_ast(FILE *stream, const struct printf_info *info, const void *const args[]); ast_list_t *get_ast_children(ast_t *ast); bool is_idempotent(ast_t *ast); -type_ast_t *replace_type_ast(type_ast_t *t, type_ast_t *target, type_ast_t *replacement); // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 -- cgit v1.2.3