diff options
Diffstat (limited to 'stdlib/types.h')
| -rw-r--r-- | stdlib/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/types.h b/stdlib/types.h index 36508393..2c9abcfc 100644 --- a/stdlib/types.h +++ b/stdlib/types.h @@ -30,7 +30,7 @@ struct TypeInfo_s { metamethods_t metamethods; struct { // Anonymous tagged union for convenience enum { OpaqueInfo, StructInfo, EnumInfo, PointerInfo, TextInfo, ArrayInfo, TableInfo, FunctionInfo, - OptionalInfo, TypeInfoInfo } tag; + OptionalInfo, MutexedDataInfo, TypeInfoInfo } tag; union { struct {} OpaqueInfo; struct { @@ -54,7 +54,7 @@ struct TypeInfo_s { } TypeInfoInfo; struct { const TypeInfo_t *type; - } OptionalInfo; + } OptionalInfo, MutexedDataInfo; struct { const char *name; int num_tags; |
