diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 11:32:25 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 11:32:25 +0100 |
| commit | a7b6ab92c118c617223751dd9ca0c38cdd72447b (patch) | |
| tree | f08201ab57e1c445313376cf39824e29ea7abee9 /core/slice | |
| parent | adc44312bf78b1842f568d0bac3170898688007b (diff) | |
Remove unused store
Diffstat (limited to 'core/slice')
| -rw-r--r-- | core/slice/sort.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/slice/sort.odin b/core/slice/sort.odin index 42112c613..1e2a8ff59 100644 --- a/core/slice/sort.odin +++ b/core/slice/sort.odin @@ -357,7 +357,6 @@ reverse_sort_by :: proc(data: $T/[]$E, less: proc(i, j: E) -> bool) { } reverse_sort_by_cmp :: proc(data: $T/[]$E, cmp: proc(i, j: E) -> Ordering) { - context._internal = rawptr(cmp) sort_by_cmp_with_data(data, proc(i, j: E, user_data: rawptr) -> Ordering { k := (proc(i, j: E) -> Ordering)(user_data) return k(j, i) |