diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-17 20:35:09 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-17 20:35:09 -0400 |
| commit | f4e38fd061a158ecb94881273c6db6e6a332f61d (patch) | |
| tree | 9179cb312dcc1b24d806dfb65694c25580d1ed8b /src/stdlib/memory.c | |
| parent | 602cedd03b0c3d6ef176efafb08f51bde9bfe543 (diff) | |
Switch from using dollar signs as namespace delimiters to using 々, ヽ, andunicode-identifiers
〇.
Diffstat (limited to 'src/stdlib/memory.c')
| -rw-r--r-- | src/stdlib/memory.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stdlib/memory.c b/src/stdlib/memory.c index 46729f83..21893fd0 100644 --- a/src/stdlib/memory.c +++ b/src/stdlib/memory.c @@ -13,18 +13,18 @@ #include "types.h" #include "util.h" -public Text_t Memory$as_text(const void *p, bool colorize, const TypeInfo_t *info) { +public Text_t Memoryヽas_text(const void *p, bool colorize, const TypeInfo_t *info) { (void)info; if (!p) return Text("Memory"); - Text_t text = Text$from_str(String("Memory<", *(void**)p, ">")); + Text_t text = Textヽfrom_str(String("Memory<", *(void**)p, ">")); return colorize ? Texts(Text("\x1b[0;34;1m"), text, Text("\x1b[m")) : text; } -public const TypeInfo_t Memory$info = { +public const TypeInfo_t Memoryヽinfo = { .size=0, .align=0, .metamethods={ - .as_text=Memory$as_text, + .as_text=Memoryヽas_text, .serialize=cannot_serialize, .deserialize=cannot_deserialize, }, |
