aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-12-01 11:56:08 +0000
committergingerBill <bill@gingerbill.org>2019-12-01 11:56:08 +0000
commit7fbe0a6f2385e618ea4d3a724d2ed6147b6921bf (patch)
tree9e032434af0afa47f66a40aac3605ef7f14505d2 /examples
parent3fd5c3cd851d8f4dfd441141ca7e96889f069933 (diff)
Fix nil comparisons for soa slices and dynamic arrays
Diffstat (limited to 'examples')
-rw-r--r--examples/demo/demo.odin4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index 67435f4ea..1fce88ce9 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -1833,9 +1833,7 @@ main :: proc() {
deprecated_attribute();
range_statements_with_multiple_return_values();
threading_example();
-
- // TODO(tetra): When bill fixes SOA array comparison to nil in reserve_soa, we can re-enable this.
- // soa_struct_layout();
+ soa_struct_layout();
}
}