aboutsummaryrefslogtreecommitdiff
path: root/stdlib/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-16 13:35:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-16 13:35:58 -0400
commit469b1e067961e021e7860f70919b574c142d1f40 (patch)
treecd696be4b66550669c883075fd41a6bbd2a26eaa /stdlib/types.h
parentf51acef40e8297d7bd41b774413aa8331ca946ed (diff)
Fixes for opaque external structs
Diffstat (limited to 'stdlib/types.h')
-rw-r--r--stdlib/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/types.h b/stdlib/types.h
index f74048cc..c7b938a0 100644
--- a/stdlib/types.h
+++ b/stdlib/types.h
@@ -63,7 +63,7 @@ struct TypeInfo_s {
struct {
const char *name;
int num_fields;
- bool is_secret:1;
+ bool is_secret:1, is_opaque:1;
NamedType_t *fields;
} StructInfo;
};