From d2e82367925c7e10504c1caec1605806bb364629 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 27 Nov 2025 14:25:45 -0500 Subject: Bugfix for Num32$as_text() visibility --- src/stdlib/numX.c.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/stdlib/numX.c.h b/src/stdlib/numX.c.h index 7b030ab4..0e84708f 100644 --- a/src/stdlib/numX.c.h +++ b/src/stdlib/numX.c.h @@ -67,6 +67,7 @@ PUREFUNC int32_t NAMESPACED(compare)(const void *x, const void *y, const TypeInf #elif NUMX_C_H__BITS == 32 public PUREFUNC Text_t NAMESPACED(value_as_text)(NUM_T x) { return Num$value_as_text((double)x); } +public PUREFUNC Text_t NAMESPACED(as_text)(const void *x, bool colorize, const TypeInfo_t *info) { (void)info; if (!x) return Text(TYPE_STR); -- cgit v1.2.3