diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2019-12-03 09:35:24 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-03 09:35:24 +0000 |
| commit | 42def957d56b48057622f963f1c1bbcd6f4fcbf2 (patch) | |
| tree | 69665f97ba88b9413e4073812cf06bb932f1ead4 /core/runtime | |
| parent | 6433a0d31e7989208482ba415bc5031980c01879 (diff) | |
Fix `append_elem_string`, again
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 534d1e52f..340267497 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -575,7 +575,7 @@ append_elems :: proc(array: ^$T/[dynamic]$E, args: ..E, loc := #caller_location) @builtin append_elem_string :: proc(array: ^$T/[dynamic]$E/u8, arg: $A/string, loc := #caller_location) { args := transmute([]E)arg; - append_elems(array=array, args=..args, loc=loc); + append_elems(array=array, args=args, loc=loc); } @builtin |