aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <jeroen@paramythic.com>2019-03-02 13:24:11 +0100
committerJeroen van Rijn <jeroen@paramythic.com>2019-03-02 13:24:11 +0100
commit7bd86bb3ec8cffe2758dde99f40233e093f6c0ce (patch)
tree18fbfd4026bcbd4d34c9d802c15f8bc267670f29
parentb6d6eb6ae2d22935d146df8bc715c580fe5cb321 (diff)
well, that was a stupid copy/paste bug
-rw-r--r--examples/demo/demo.odin4
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,