diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-05 12:49:13 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-05 12:49:13 -0500 |
| commit | 103edd636205921e1afadd91a284f3ead22afcce (patch) | |
| tree | 915ca6ff044de32d419b2c399b8f0028105af9e6 /builtins/pointer.c | |
| parent | e29aa52460df6a5d3e78f7e466947bcdd7a3bbb0 (diff) | |
Fix cyclic structs/enums
Diffstat (limited to 'builtins/pointer.c')
| -rw-r--r-- | builtins/pointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
