diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:31:54 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:31:54 -0400 |
| commit | 04c8fb0362dc4f922c1e96ca01fb87a3e8e74214 (patch) | |
| tree | a5a65a625a9b697ac6875874b9b4c04abd3d0a65 /builtins/memory.c | |
| parent | 391c1b6bde0d5fd6f306f9613109e18ec487afe7 (diff) | |
Replace $Type with Type$info for builtin TypeInfos
Diffstat (limited to 'builtins/memory.c')
| -rw-r--r-- | builtins/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/memory.c b/builtins/memory.c index 06fb7bb2..47ff081b 100644 --- a/builtins/memory.c +++ b/builtins/memory.c @@ -19,7 +19,7 @@ public Text_t Memory__as_text(const void *p, bool colorize, const TypeInfo *type return Text$format(colorize ? "\x1b[0;34;1mMemory<%p>\x1b[m" : "Memory<%p>", p); } -public const TypeInfo $Memory = { +public const TypeInfo Memory$info = { .size=0, .align=0, .tag=CustomInfo, |
