diff options
| author | gingerBill <bill@gingerbill.org> | 2018-11-25 14:14:58 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-11-25 14:14:58 +0000 |
| commit | 444f4f446a8272ca3a1ab763c92bc18375c4d947 (patch) | |
| tree | d925afb75f0bfcbdc27492a98a8763bd80b223ff /examples | |
| parent | 41ad896f3fc7a5952fdf05804560931a0dfd9463 (diff) | |
`-vet` flag to do basic vetting of code
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 7b35bbd2f..1a4b48037 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -408,7 +408,6 @@ parametric_polymorphism :: proc() { } assert(table.count <= len(table.slots)); - hash := get_hash(key); index = int(hash % u32(len(table.slots))); for table.slots[index].occupied { |