From 8cba6c3c24c2122c843aa0feaa26fd6e5c2412e2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 30 Mar 2025 17:27:52 -0400 Subject: Deprecate built-in Moment datatype in favor of a `time` module --- src/stdlib/integers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/integers.h') diff --git a/src/stdlib/integers.h b/src/stdlib/integers.h index 779bee1f..a057327b 100644 --- a/src/stdlib/integers.h +++ b/src/stdlib/integers.h @@ -20,7 +20,7 @@ #define DEFINE_INT_TYPE(c_type, type_name) \ typedef struct { \ - c_type i; \ + c_type value; \ bool is_none:1; \ } Optional ## type_name ## _t; \ Text_t type_name ## $as_text(const void *i, bool colorize, const TypeInfo_t *type); \ -- cgit v1.2.3