From 597699243a6f935231ad83e63d22bf6ff9e4e547 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 1 Oct 2025 13:40:29 -0400 Subject: For structs and fixed-size ints, use `.has_value` instead of `.is_none` --- src/stdlib/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/types.h') diff --git a/src/stdlib/types.h b/src/stdlib/types.h index 2e358c6c..85567815 100644 --- a/src/stdlib/types.h +++ b/src/stdlib/types.h @@ -109,7 +109,7 @@ Text_t Type$as_text(const void *typeinfo, bool colorize, const TypeInfo_t *type) t value; \ struct { \ char _padding[unpadded_size]; \ - Bool_t is_none; \ + Bool_t has_value; \ }; \ }; \ } name -- cgit v1.2.3