Browse Source

Merge pull request #715 from Platin21/patch-1

Update ring.odin
gingerBill 5 years ago
parent
commit
7309cfdbb2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/container/ring.odin

+ 1 - 1
core/container/ring.odin

@@ -2,7 +2,7 @@ package container
 
 
 Ring :: struct(T: typeid) {
-	next, prev: ^Ring,
+	next, prev: ^Ring(T),
 	value: T,
 }