Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions errors/errors.odin
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#+feature global-context
/*
This file is part of runic.

Expand Down
4 changes: 2 additions & 2 deletions runic/rune.odin
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ parse_rune :: proc(
)
errors.wrap(mem_err) or_return

d_map[d_key] = strconv.append_int(
d_map[d_key] = strconv.write_int(
buf[:],
d_v,
10,
Expand All @@ -1467,7 +1467,7 @@ parse_rune :: proc(
)
errors.wrap(mem_err) or_return

d_map[d_key] = strconv.append_float(
d_map[d_key] = strconv.write_float(
buf[:],
d_v,
'f',
Expand Down