diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 22:15:45 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 22:15:45 -0500 |
| commit | 4a5c651d43f106b8e19b485646c64cb576a75cfb (patch) | |
| tree | 6fe289145c475cfc027bd9d8c98c80e8cbccf8c7 /builtins/string.c | |
| parent | 95641182021b5ba76697f57706c12ad70340193f (diff) | |
Overload type names with constructor and namespace struct
Diffstat (limited to 'builtins/string.c')
| -rw-r--r-- | builtins/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/string.c b/builtins/string.c index 7e20b34d..cd6e2548 100644 --- a/builtins/string.c +++ b/builtins/string.c @@ -254,7 +254,7 @@ public CORD Str__join(CORD glue, Str_Array_t pieces) return ret; } -public Str_namespace_t Str_type = { +public Str_namespace_t Str = { .type={ .size=sizeof(CORD), .align=__alignof__(CORD), |
