From a4b8ef38b1d7a26b4e6bfa966f021a237bf16ce1 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 23 Aug 2025 18:20:43 -0400 Subject: Lots of cleanups --- src/stdlib/nums.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stdlib/nums.c') diff --git a/src/stdlib/nums.c b/src/stdlib/nums.c index cbb0c9d7..83166659 100644 --- a/src/stdlib/nums.c +++ b/src/stdlib/nums.c @@ -113,7 +113,7 @@ public OptionalNum_t Num$parse(Text_t text, Text_t *remainder) { } } -static bool Num$is_none(const void *n, const TypeInfo_t *info) +public CONSTFUNC bool Num$is_none(const void *n, const TypeInfo_t *info) { (void)info; return isnan(*(Num_t*)n); @@ -223,7 +223,7 @@ public OptionalNum32_t Num32$parse(Text_t text, Text_t *remainder) { } } -static bool Num32$is_none(const void *n, const TypeInfo_t *info) +public CONSTFUNC bool Num32$is_none(const void *n, const TypeInfo_t *info) { (void)info; return isnan(*(Num32_t*)n); -- cgit v1.2.3