aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-01-02 15:07:58 +0000
committergingerBill <bill@gingerbill.org>2020-01-02 15:07:58 +0000
commitbbe9b4dee0d847f25e1ef0c41dac459efb8fa6ef (patch)
tree5a0bda95e5f2509ee7598018b40b343b101f786b
parent3bd00fd6b7bea465ab9882e6b0f1b8e0842a4fa1 (diff)
parent83fec387d45d6d80ce832b852495b8fd69a3ffa8 (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
-rw-r--r--core/runtime/core.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin
index f24a7a0f0..aa2d9affa 100644
--- a/core/runtime/core.odin
+++ b/core/runtime/core.odin
@@ -924,7 +924,7 @@ append_soa_elems :: proc(array: ^$T/#soa[dynamic]$E, args: ..E, loc := #caller_l
@builtin
append_string :: proc(array: ^$T/[dynamic]$E/u8, args: ..string, loc := #caller_location) {
for arg in args {
- append(array = array, args = ([]E)(arg), loc = loc);
+ append(array = array, args = transmute([]E)(arg), loc = loc);
}
}