diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-01 23:00:42 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-01 23:00:42 +0000 |
| commit | b01e0fbbc209110cf49b980149edb73ece475af3 (patch) | |
| tree | 2ec8cf21c41cb3ecefa4becf5539bf1684a747a0 /examples | |
| parent | 4f0a3eec24457ec112094a9517cbd9e5cac91e10 (diff) | |
Correct typo in soa data type debug information generation
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 6a7653b10..c1f5c90ed 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -2440,14 +2440,14 @@ main :: proc() { range_statements_with_multiple_return_values() threading_example() - when !ODIN_DEBUG { + // when !ODIN_DEBUG { /* This test causes the following error when compiled with -`debug`: `Kernel32.lib(KERNEL32.dll) : fatal error LNK1103: debugging information corrupt; recompile module` Only compile when not running under debug for now to not hold up CI for other commits. */ soa_struct_layout() - } + // } constant_literal_expressions() union_maybe() |