From 398d2cab6988e20c59e7037ff7ef551540339abb Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 5 Oct 2025 17:52:33 -0400 Subject: Fix a bunch of issues with optional types --- src/stdlib/structs.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/stdlib/structs.h') diff --git a/src/stdlib/structs.h b/src/stdlib/structs.h index 368a670a..a582e9fb 100644 --- a/src/stdlib/structs.h +++ b/src/stdlib/structs.h @@ -13,7 +13,6 @@ PUREFUNC int32_t Struct$compare(const void *x, const void *y, const TypeInfo_t * PUREFUNC bool Struct$equal(const void *x, const void *y, const TypeInfo_t *type); PUREFUNC bool PackedData$equal(const void *x, const void *y, const TypeInfo_t *type); PUREFUNC Text_t Struct$as_text(const void *obj, bool colorize, const TypeInfo_t *type); -PUREFUNC bool Struct$is_none(const void *obj, const TypeInfo_t *type); void Struct$serialize(const void *obj, FILE *out, Table_t *pointers, const TypeInfo_t *type); void Struct$deserialize(FILE *in, void *outval, List_t *pointers, const TypeInfo_t *type); @@ -23,7 +22,6 @@ void Struct$deserialize(FILE *in, void *outval, List_t *pointers, const TypeInfo .compare = Struct$compare, \ .equal = Struct$equal, \ .as_text = Struct$as_text, \ - .is_none = Struct$is_none, \ .serialize = Struct$serialize, \ .deserialize = Struct$deserialize, \ } @@ -34,7 +32,6 @@ void Struct$deserialize(FILE *in, void *outval, List_t *pointers, const TypeInfo .compare = Struct$compare, \ .equal = PackedData$equal, \ .as_text = Struct$as_text, \ - .is_none = Struct$is_none, \ .serialize = Struct$serialize, \ .deserialize = Struct$deserialize, \ } -- cgit v1.2.3