From 7a172be6213839a3d023ba21c3bafd7540a4bfe8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 31 Mar 2025 02:11:03 -0400 Subject: Remove threads and mutexed data from the language in favor of a module-based approach --- src/types.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h index ae34c217..a5b2ad04 100644 --- a/src/types.h +++ b/src/types.h @@ -57,7 +57,6 @@ struct type_s { EnumType, OptionalType, TypeInfoType, - MutexedType, ModuleType, } tag; @@ -116,7 +115,7 @@ struct type_s { } EnumType; struct { type_t *type; - } OptionalType, MutexedType; + } OptionalType; struct { const char *name; type_t *type; -- cgit v1.2.3