2
0
Эх сурвалжийг харах

Swap order of `prev` and `next`

gingerBill 2 жил өмнө
parent
commit
53380632a1

+ 1 - 1
core/container/intrusive/list/intrusive_list.odin

@@ -20,7 +20,7 @@ List :: struct {
 
 
 Node :: struct {
-	next, prev: ^Node,
+	prev, next: ^Node,
 }
 
 push_front :: proc(list: ^List, node: ^Node) {