aboutsummaryrefslogtreecommitdiff
path: root/builtins/string.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-17 22:15:45 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-17 22:15:45 -0500
commit4a5c651d43f106b8e19b485646c64cb576a75cfb (patch)
tree6fe289145c475cfc027bd9d8c98c80e8cbccf8c7 /builtins/string.h
parent95641182021b5ba76697f57706c12ad70340193f (diff)
Overload type names with constructor and namespace struct
Diffstat (limited to 'builtins/string.h')
-rw-r--r--builtins/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/string.h b/builtins/string.h
index e625d7e2..51862520 100644
--- a/builtins/string.h
+++ b/builtins/string.h
@@ -42,7 +42,7 @@ typedef struct {
int (*hash)(CORD *s, TypeInfo *type);
CORD (*cord)(CORD *s, bool colorize, TypeInfo *type);
} Str_namespace_t;
-extern Str_namespace_t Str_type;
+extern Str_namespace_t Str;
CORD Str__quoted(CORD str, bool colorize);
int Str__compare(CORD *x, CORD *y);