From 4a5c651d43f106b8e19b485646c64cb576a75cfb Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 17 Feb 2024 22:15:45 -0500 Subject: Overload type names with constructor and namespace struct --- builtins/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/string.h') 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); -- cgit v1.2.3