From 391c1b6bde0d5fd6f306f9613109e18ec487afe7 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 5 Sep 2024 14:57:31 -0400 Subject: Rename table_t -> Table_t --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parse.c') diff --git a/parse.c b/parse.c index 22bb883d..2f3a8c3d 100644 --- a/parse.c +++ b/parse.c @@ -2228,7 +2228,7 @@ ast_t *parse_file(const char *path, jmp_buf *on_err) { // hold more than PARSE_CACHE_SIZE entries (see below), but each entry's // AST holds onto a reference to the file it came from, so they could // potentially be somewhat large. - static table_t cached = {}; + static Table_t cached = {}; ast_t *ast = Table$str_get(cached, path); if (ast) return ast; -- cgit v1.2.3