aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-08-22 18:56:41 +0100
committergingerBill <bill@gingerbill.org>2018-08-22 18:56:41 +0100
commita65eadee63828a681e07d7a99ce154b66c856d1e (patch)
tree95bf74c452a45beb737b54f15a620d5cab9b1353 /core/runtime
parent16dfae62bcdce4d56c4adeaf6229e4d4eb95b329 (diff)
Fix for in enum iteration
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/core.odin1
-rw-r--r--core/runtime/internal.odin2
2 files changed, 1 insertions, 2 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin
index a111cddf4..db908530e 100644
--- a/core/runtime/core.odin
+++ b/core/runtime/core.odin
@@ -37,7 +37,6 @@ Type_Info_Enum_Value :: union {
rune,
i8, i16, i32, i64, int,
u8, u16, u32, u64, uint, uintptr,
- f32, f64,
};
// Variant Types
diff --git a/core/runtime/internal.odin b/core/runtime/internal.odin
index 34a6bf60f..141058647 100644
--- a/core/runtime/internal.odin
+++ b/core/runtime/internal.odin
@@ -299,7 +299,7 @@ type_assertion_check :: proc "contextless" (ok: bool, file: string, line, column
fd := os.stderr;
__print_caller_location(fd, Source_Code_Location{file, line, column, ""});
- os.write_string(fd, " Invalid type assertion from");
+ os.write_string(fd, " Invalid type assertion from ");
__print_typeid(fd, from);
os.write_string(fd, " to ");
__print_typeid(fd, to);