diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-01-02 20:29:55 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-01-02 20:29:55 -0500 |
| commit | b025cf269d2e07e179be4a0e34d936862dc640c2 (patch) | |
| tree | 6bcce81829436a08dbe4f0101044c0cd07811525 /types.h | |
| parent | 500e4e1bd74b45476c4df0f4f9da72fbada9bb18 (diff) | |
Use `holding` blocks for mutexed data instead of lambdas
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -60,6 +60,7 @@ struct type_s { EnumType, OptionalType, TypeInfoType, + MutexedType, ModuleType, } tag; @@ -117,7 +118,7 @@ struct type_s { } EnumType; struct { type_t *type; - } OptionalType; + } OptionalType, MutexedType; struct { const char *name; type_t *type; |
