diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-11-27 14:25:45 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-11-27 14:25:45 -0500 |
| commit | d2e82367925c7e10504c1caec1605806bb364629 (patch) | |
| tree | fbed771a9b2264c8d43a6e02dfc0878ea7a76295 /src/stdlib | |
| parent | 69067d2512ea495224508a854ab617bed0ea5ab5 (diff) | |
Bugfix for Num32$as_text() visibility
Diffstat (limited to 'src/stdlib')
| -rw-r--r-- | src/stdlib/numX.c.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
