diff options
| author | Jeroen van Rijn <jeroen@paramythic.com> | 2019-03-02 13:24:11 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <jeroen@paramythic.com> | 2019-03-02 13:24:11 +0100 |
| commit | 7bd86bb3ec8cffe2758dde99f40233e093f6c0ce (patch) | |
| tree | 18fbfd4026bcbd4d34c9d802c15f8bc267670f29 /examples | |
| parent | b6d6eb6ae2d22935d146df8bc715c580fe5cb321 (diff) | |
well, that was a stupid copy/paste bug
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 ad7a2666d..fd15b2a97 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -703,9 +703,9 @@ map_type :: proc() { A = 0, B = 1 << 64 - 1, } - Enum_i32 :: enum i32 { + Enum_i8 :: enum i8 { A = 0, - B = -(1 << 31), + B = -(1 << 7), } Enum_i64 :: enum i64 { A = 0, |