aboutsummaryrefslogtreecommitdiff
path: root/src/entity.c
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-02-19 12:38:49 +0000
committerGinger Bill <bill@gingerbill.org>2017-02-19 12:38:49 +0000
commit6fdcbefe5d488deea2825d908ff36af624e170d2 (patch)
treeb85f96e764bb61ee9cc428864f716a79ccdf1b2b /src/entity.c
parent3cec2550d9b15eb56b8dd1b42a30b9f47ace0b4c (diff)
Unexported struct fields
Diffstat (limited to 'src/entity.c')
-rw-r--r--src/entity.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.c b/src/entity.c
index 99acef870..32d070953 100644
--- a/src/entity.c
+++ b/src/entity.c
@@ -113,6 +113,7 @@ bool is_entity_kind_exported(EntityKind kind) {
}
bool is_entity_exported(Entity *e) {
+ // TODO(bill): Determine the actual exportation rules for imports of entities
GB_ASSERT(e != NULL);
if (!is_entity_kind_exported(e->kind)) {
return false;