From ab9a05ed2d2e0eb76ef53709f91c54534aee543a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 11 Dec 2025 14:54:03 +0000 Subject: [PATCH] Remove `contextless` from `slice.swap_with_slice` --- core/slice/slice.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/slice/slice.odin b/core/slice/slice.odin index 8e46e213c..4e3289321 100644 --- a/core/slice/slice.odin +++ b/core/slice/slice.odin @@ -447,7 +447,7 @@ rotate_right :: proc "contextless" (array: $T/[]$E, k: int) { rotate_left(array, -k) } -swap_with_slice :: proc "contextless" (a, b: $T/[]$E, loc := #caller_location) { +swap_with_slice :: proc(a, b: $T/[]$E, loc := #caller_location) { assert(len(a) == len(b), "miss matching slice lengths", loc) ptr_swap_non_overlapping(raw_data(a), raw_data(b), len(a)*size_of(E))