From 103edd636205921e1afadd91a284f3ead22afcce Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 5 Mar 2024 12:49:13 -0500 Subject: Fix cyclic structs/enums --- builtins/pointer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/pointer.c') diff --git a/builtins/pointer.c b/builtins/pointer.c index bf844cbf..54bab4b3 100644 --- a/builtins/pointer.c +++ b/builtins/pointer.c @@ -18,7 +18,7 @@ typedef struct recursion_s { struct recursion_s *next; } recursion_t; -public CORD Pointer__cord(const void *x, bool colorize, const TypeInfo *type) { +public CORD Pointer__as_text(const void *x, bool colorize, const TypeInfo *type) { auto ptr_info = type->PointerInfo; if (!x) { CORD typename = generic_as_text(NULL, false, ptr_info.pointed); -- cgit v1.2.3